generated from CheesyChocolate/Python_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 919 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="susskind-pipe-theory",
version="0.1.0",
description="Leveraging graph theory and reinforcement learning to find the input for a desired output in a pipe maze.",
long_description=readme,
long_description_content_type="text/markdown",
author="Suren Lockwood",
author_email="[email protected]",
url="https://github.com/CheesyChocolate/susskind-pipe-theory",
license=license,
packages=find_packages(exclude=("tests", "docs")),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
install_requires=[
"numpy",
],
)