-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsetup.py
53 lines (35 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
setup(
### Metadata
name='PyQtImageViewer',
version='2.0.0.post1',
description='Yet another PyQt6 or PyQt5 image viewer widget',
long_description=(HERE / "README.md").read_text(),
long_desc_type = "text/markdown",
url='https://github.com/marcel-goldschen-ohm/PyQtImageViewer',
download_url='',
license='MIT',
author='Marcel Goldschen-Ohm',
author_email='[email protected]',
maintainer='John Doe',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
],
### Dependencies
install_requires=[
'numpy',
'Pillow',
],
### Contents
packages=find_packages()
)