-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.05 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as fh:
README = fh.read()
setup(
name="Augmentare",
version="0.0.1",
description="A study on the fairness of generative augmentation methods for deep learning",
long_description=README,
long_description_content_type="text/markdown",
author="Vuong Nguyen",
author_email="vuong.nguyen@irt-saintexupery.com",
license="MIT",
install_requires=['torch', 'torchvision', 'numpy', 'matplotlib', 'scipy', 'tqdm', 'imageio'],
extras_require={
"tests": ["pytest", "pytest-cov", "tox", "pylint"],
"docs": ["mkdocs", "mkdocs-material", "numkdoc", "docutils", "Markdown", "mknotebooks", "Pygments", "pymdown-extensions"],
},
packages=find_packages(),
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)