-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.06 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ida_lib',
version='1.0',
description='Image Data Augmentation library',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/raquelvilas18/ida_lib',
author='Raquel Vilas',
author_email='[email protected]',
packages=find_packages(where="ida_lib", exclude=["tests"]),
python_requires=">=3.5",
keywords=["Pytorch", "Image Data Augmentation"],
install_requires=["opencv-python",
"numpy>=1.18.0",
"bokeh>=2.0.0",
"kornia>=0.3.1",
"torch>=1.5.0",
"pandas",
"tqdm"],
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)