-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (43 loc) · 1.32 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
##from pkg_resources import parse_version
##assert parse_version(setuptools.__version__)>=parse_version('58.2.0')
#import setuptools
from setuptools import setup, find_packages
#with open("README.md", "r") as fh:
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='robust_deep_learning',
version="0.5.0",
author="David Macêdo",
author_email="[email protected]",
description="The Robust Deep Learning Library",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/dlmacedo/robust-deep-learning',
#scripts=['rdl'],
#packages=find_packages(exclude=['loaders', 'utils', 'models']),
#packages=setuptools.find_packages(),
packages=['robust_deep_learning'],
include_package_data=True,
python_requires='>=3.6',
keywords='pytorch isomax isomax+ dismax',
install_requires=[
'torch >= 1.10',
'torchvision',
'torchmetrics',
'torchnet',
'numpy',
'pandas',
'scipy',
'scikit-learn',
'matplotlib',
'seaborn',
'tqdm',
'timm',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'License :: OSI Approved :: Apache Software License',
],
)