-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (69 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup
requirements = [
"arrow==1.2.2",
"binaryornot==0.4.4",
"category-encoders==2.4.0",
"chardet==4.0.0",
"charset-normalizer==2.0.12",
"click==8.1.3",
"cookiecutter==2.1.1",
"guizero==1.3.0",
"idna==3.3",
"jinja2==3.1.2",
"jinja2-time==0.2.0",
"joblib==1.2.0",
"lxml==4.9.1",
"markupsafe==2.1.1",
"matplotlib-inline==0.1.3",
"natsort==8.1.0",
"numpy==1.22.3",
"opencv-python==4.5.5.64",
"patsy==0.5.2",
"poyo==0.5.0",
"prompt-toolkit==3.0.29",
"pygments==2.12.0",
"python-slugify==6.1.2",
"requests==2.27.1",
"scikit-learn==1.0.2",
"statsmodels==0.13.2",
"text-unidecode==1.3",
"threadpoolctl==3.1.0",
"torch==1.13.1",
"torchaudio==0.11.0",
"torchvision==0.12.0",
"typing-extensions==4.2.0",
"urllib3==1.26.9",
"seaborn",
"scipy",
"guizero",
"pandas==1.4.2",
"ipython==8.10.0",
"tqdm==4.64.0",
"six==1.16.0",
]
setup(
name='photobox',
version='0.0.3',
description="A guizero application to image insect sticky plates",
author="Ioannis Kalfas",
author_email='kalfasyan@gmail.com',
url='https://github.com/kalfasyan/photobox',
packages=['photobox', 'photobox.icons',
'photobox.tests'],
package_data={'photobox.icons': ['*.png']},
entry_points={
'console_scripts': [
'PhotoBox=photobox.photobox_app:main'
]
},
install_requires=requirements,
zip_safe=False,
keywords='photobox',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)