-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1 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
from setuptools import setup, find_packages
setup(
name="markov-abstractions",
author="Gabriel Paludo Licks, Marco Favorito",
author_email="[email protected], [email protected]",
version="0.1.0",
url="https://github.com/whitemech/markov_abstractions.git",
packages=find_packages(where="markov_abstractions"),
package_dir={"": "markov_abstractions"},
include_package_data=True,
zip_safe=False,
install_requires=["gym", "graphviz"],
license="GPL-3.0-or-later",
keywords=[
"reinforcement learning",
"non-markovianity",
"markov abstraction",
"illusion module",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
test_suite='tests',
)