forked from Deeplite/deeplite-torch-zoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (68 loc) · 2.31 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
import sys
import pathlib
from setuptools import find_packages, setup
with open('LICENSE.md') as f:
license = f.read()
with open('README.md') as f:
long_description = f.read()
# Package
HERE = pathlib.Path(__file__).parent
INSTALL_REQUIRES = [
'setuptools<65.6.0',
'urllib3==1.26.6',
'torch>=1.4, <=2.0.1',
'opencv-python<=4.6.0.66',
'scipy>=1.4.1',
'Cython==0.29.30',
'tqdm>=4.46.0',
'albumentations==1.0.3',
'tensorboardX==2.4.1',
'pyvww==0.1.1',
'timm==0.9.2',
'pytorchcv==0.0.67',
'texttable==1.6.4',
'addict==2.4.0',
'Wand==0.6.11',
'pytz',
'pandas',
'tensorboard>=2.11.2',
'openmim==0.3.7',
'super-gradients==3.3.0',
]
if sys.version_info.minor > 7:
INSTALL_REQUIRES += ['numpy==1.22.2', 'ultralytics==8.0.200']
else:
INSTALL_REQUIRES += ['numpy==1.21.6', 'ultralytics==8.0.145']
setup(
name='deeplite-torch-zoo',
version='2.0.4',
description='The deeplite-torch-zoo package is a collection of popular pretrained deep learning models and their datasets for PyTorch framework.',
long_description=long_description,
long_description_content_type='text/markdown',
license='Multi-licensing',
author='Deeplite',
author_email='support@deeplite.ai',
url='https://github.com/Deeplite/deeplite-torch-zoo',
include_package_data=True,
packages=find_packages(exclude=['tests*']),
tests_require=['pytest', 'pylint'],
setup_requires=['pytest-runner', 'pytest-pylint'],
install_requires=INSTALL_REQUIRES,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Natural Language :: English',
'License :: Other/Proprietary License',
'Environment :: Console',
],
keywords='deep_neural_network deep_learning zoo model datasets pytorch deeplite',
)