forked from mdbloice/Augmentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.62 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
from setuptools import setup
setup(
name='Augmentor',
packages=['Augmentor'],
version='0.2.3',
description='Image augmentation library for Machine Learning',
long_description='Image augmentation library for Machine Learning',
license='MIT',
author='Marcus D. Bloice',
author_email='[email protected]',
url='https://github.com/mdbloice/Augmentor', # URL to GitHub repo
# download_url='https://github.com/mdbloice/Augmentor/tarball/0.1.1', # Get this using git tag
keywords=['image', 'augmentation', 'artificial', 'generation', 'machine', 'learning'],
include_package_data=True, # This will include all files in MANIFEST.in in the package when installing.
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'Pillow>=4.0.0',
'tqdm>=4.9.0',
'future>=0.16.0',
'numpy>=1.11.0',
'futures>=3.2.0; python_version == "2.7"'
]
# zip_safe=False # Check this later.
)