forked from trevorhobenshield/amazon_photos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.75 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
from textwrap import dedent
from setuptools import find_packages, setup
from pathlib import Path
install_requires = [
'psutil',
'nest-asyncio',
'tqdm',
'uvloop; platform_system != "Windows"',
'aiofiles',
'orjson',
'httpx[http2]',
'pandas',
'psutil',
]
extras_require = {
'extras': ['torch', 'torchvision', 'timm', 'Pillow'],
}
about = {}
exec((Path().cwd() / 'amazon_photos' / '__version__.py').read_text(), about)
setup(
name=about['__title__'],
version=about['__version__'],
author=about['__author__'],
description=about['__description__'],
license=about['__license__'],
long_description=dedent((Path().cwd() / 'README.md').read_text()),
python_requires=">=3.10.10",
long_description_content_type='text/markdown',
author_email='trevorhobenshield@gmail.com',
url='https://github.com/trevorhobenshield/amazon_photos',
install_requires=install_requires,
extras_require=extras_require,
keywords='amazon photos api async search automation',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)