-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 944 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='amos3',
version='0.1.0',
packages=find_packages(exclude=['*tests*']),
package_dir={'': '.'},
install_requires=[
'coveralls==1.3.0',
'boto3',
'lxml',
'nose',
'numpy',
'pytest-cov',
'python-dateutil',
'pytest-pylint',
'requests',
],
url='https://github.com/mjbommar/amos3',
license='MIT License',
author='Michael J Bommarito II',
author_email='michael.bommarito@gmail.com',
description='Python 3 client for Archive of Many Outdoor Scenes (AMOS)',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='amos outdoor scene computer vision dataset',
)