-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
125 lines (119 loc) · 5.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
"""
setup.py
The installation script responsible for setting up the CLI program on the user's system.
"""
import os
import sys
from setuptools import find_packages, setup
EXCLUDE_FROM_PACKAGES = []
CURDIR = sys.path[0]
with open(os.path.join(CURDIR, "README.md")) as file:
README = file.read()
setup(
name="phototag",
version="0.1.0",
author="Xevion",
author_email="[email protected]",
description="",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/xevion/phototag",
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
keywords=[],
scripts=[],
entry_points="""
[console_scripts]
phototag=phototag.__main__:main
""",
zip_safe=False,
python_requires=">=3.7",
# license and classifier list:
# https://pypi.org/pypi?%3Aaction=list_classifiers
license="License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=[
"cachetools==5.3.0; python_version ~= '3.7'",
"certifi==2023.5.7; python_version >= '3.6'",
"charset-normalizer==3.1.0; python_full_version >= '3.7.0'",
"click==8.1.3",
"colorama==0.4.6; platform_system == 'Windows'",
"colored-traceback==0.3.0",
"commonmark==0.9.1",
"google-api-core==2.11.0; python_version >= '3.7'",
"google-api-python-client==2.86.0",
"google-auth==2.18.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
"google-auth-httplib2==0.1.0",
"google-cloud-vision==3.4.1",
"googleapis-common-protos==1.59.0; python_version >= '3.7'",
"grpcio==1.54.0",
"grpcio-status==1.54.0",
"httplib2==0.22.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"idna==3.4; python_version >= '3.5'",
"imagehash==4.1.0",
"imageio==2.6.1",
"iptcinfo3==2.1.4",
"numpy==1.24.3; python_version >= '3.8'",
"pillow==9.5.0",
"proto-plus==1.22.2; python_version >= '3.6'",
"protobuf==4.23.0",
"pyasn1==0.5.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
"pyasn1-modules==0.3.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
"pygments==2.15.1; python_version >= '3.7'",
"pyparsing==3.0.9; python_version >= '3.1'",
"pywavelets==1.4.1; python_version >= '3.8'",
"rawpy==0.18.1",
"requests==2.30.0; python_version >= '3.7'",
"rich==8.0.0",
"rsa==4.9; python_version >= '3.6'",
"scipy==1.10.1; python_version < '3.12' and python_version >= '3.8'",
"setuptools==67.7.2",
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"typing-extensions==3.10.0.2",
"uritemplate==4.1.1; python_version >= '3.6'",
"urllib3==1.26.15; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
],
extras_require={
"dev": [
"attrs==23.1.0; python_version >= '3.7'",
"black==22.12.0",
"cached-property==1.5.2",
"cerberus==1.3.4",
"certifi==2023.5.7; python_version >= '3.6'",
"chardet==5.0.0; python_version >= '3.6'",
"charset-normalizer==3.1.0; python_full_version >= '3.7.0'",
"click==8.1.3",
"colorama==0.4.6; platform_system == 'Windows'",
"distlib==0.3.6",
"idna==3.4; python_version >= '3.5'",
"iniconfig==2.0.0; python_version >= '3.7'",
"mypy-extensions==1.0.0; python_version >= '3.5'",
"orderedmultidict==1.0.1",
"packaging==20.9; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pathspec==0.11.1; python_version >= '3.7'",
"pep517==0.13.0; python_version >= '3.6'",
"pip==23.1.2; python_version >= '3.7'",
"pip-shims==0.7.3; python_version >= '3.6'",
"pipenv-setup[black]==3.2.0",
"pipfile==0.0.2",
"platformdirs==3.5.1; python_version >= '3.7'",
"plette[validation]==0.4.4; python_version >= '3.7'",
"pluggy==1.0.0; python_version >= '3.6'",
"pyparsing==3.0.9; python_version >= '3.1'",
"pytest==7.3.1",
"python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"requests==2.30.0; python_version >= '3.7'",
"requirementslib==1.6.9; python_version >= '3.7'",
"setuptools==67.7.2",
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"toml==0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"tomlkit==0.11.8; python_version >= '3.7'",
"urllib3==1.26.15; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
"vistir==0.6.1",
"wheel==0.40.0; python_version >= '3.7'",
]
},
)