-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 951 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 951 Bytes
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 find_packages, setup
setup(
name="pathmind",
version="0.4",
description="Python Simulations ",
url="https://github.com/PathmindAI/pathmind_api",
download_url="https://github.com/PathmindAPI/pathmind_api/tarball/0.4",
author="Max Pumperla",
author_email="max@pathmind.com",
install_requires=[
"pyyaml",
"tensorflow",
"requests",
"prettytable",
"gym",
"or-gym",
],
extras_require={
"tests": ["pytest", "flake8", "flake8-debugger", "pre-commit", "pandas"]
},
packages=find_packages(),
license="MIT",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)