-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (54 loc) · 2.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
# Prepare long description using existing docs
long_description = ""
this_dir = os.path.abspath(os.path.dirname(__file__))
doc_files = ["README.md"]
for doc in doc_files:
with open(os.path.join(this_dir, doc), 'r') as f:
long_description = "\n".join([long_description, f.read()])
# Replace relative path to images with Github URI
github_uri_prefix = "https://raw.githubusercontent.com/praveen-palanisamy" \
"/macad-gym/master/"
rel_img_path = "docs/images/"
long_description = long_description.replace(
"(" + rel_img_path, "(" + github_uri_prefix + rel_img_path)
setup(
name="macad-gym",
version='0.1.3',
description='Learning environments for Multi-Agent Connected Autonomous'
' Driving (MACAD) with OpenAI Gym compatible interfaces',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/praveen-palanisamy/macad-gym',
author='Aizaz Sharif',
author_email='praveen.palanisamy@outlook.com',
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.0',
install_requires=[
'gym', 'carla>=0.9.3', 'GPUtil', 'pygame', 'opencv-python==3.4.2.17', 'networkx'
],
extras_require={'test': ['tox', 'pytest', 'pytest-xdist', 'tox']},
keywords='multi-agent learning environments connected autonomous driving '
'OpenAI Gym CARLA',
project_urls={
'Source': 'https://github.com/praveen-palanisamy/macad-gym',
'Report bug': 'https://github.com/praveen-palanisamy/macad-gym/issues',
'Author website': 'https://praveenp.com'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers', 'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
])