-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.17 KB
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='edafa',
version='0.1.4',
description='Test Time Augmentation (TTA) wrapper for computer vision tasks: segmentation,classification, super-resolution, ... etc.',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='augmentation classification segmentation super-resolution pansharpening keras tensorflow pytorch',
url='https://github.com/andrewekhalel/edafa',
author='Andrew Khalel',
author_email='andrewekhalel@gmail.com',
license='MIT',
packages=['edafa'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'numpy', 'opencv-python'
],
zip_safe=False)