-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (29 loc) · 897 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
import setuptools
setuptools.setup(
name="pyhailing",
version="0.0.9",
url="https://github.com/nkullman/ridehailing_package",
author="Nicholas Kullman",
author_email="[email protected]",
description="An OpenAI gym environment for a ridehailing application",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[
"gym",
"matplotlib",
"numpy>=1.19,<1.22",
"pandas",
"Pillow",
"scipy",
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: Apache Software License",
],
include_package_data=True,
package_data={'': ['data/*']},
python_requires=">=3.7",
)