forked from aws-deepracer-community/deepracer-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (52 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path
import versioneer
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='deepracer-utils',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(include=["deepracer", "deepracer.*"]),
description='A set of tools for working with DeepRacer training',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aws-deepracer-community/deepracer-utils/',
author='AWS DeepRacer Community',
classifiers=[
'Development Status :: 3 - Alpha',
# Pick your license as you wish
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: Log Analysis'
],
keywords='aws deepracer awsdeepracer',
python_requires='>=3.6.*, <4',
install_requires=[
'boto3>=1.12.0',
'python-dateutil<3.0.0,>=2.1',
'numpy>=1.18.0',
'shapely>=1.7.0',
'matplotlib>=3.1.0',
'pandas>=1.0.0',
'scikit-learn>=0.22.0',
'joblib>=0.17.0'
],
extras_require={
'visualization': ['tensorflow==1.15.4', 'opencv-python', 'python-resize-image'],
'dev': ['check-manifest'],
'test': ['coverage'],
},
project_urls={
'Bug Reports':
'https://github.com/aws-deepracer-community/deepracer-utils/issues',
'Source':
'https://github.com/aws-deepracer-community/deepracer-utils/',
},
include_package_data=True,
)