-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 939 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
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="donk.ai",
version="0.1.0",
description="Reinforcement Learning Toolbox",
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf-8"),
url="https://github.com/DiddiZ/donk.ai",
author="Robin Kupper",
author_email="[email protected]",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
python_requires=">=3.8, <4",
install_requires=[
"numpy~=1.23",
"scipy~=1.10",
"scikit-learn~=1.0",
"matplotlib~=3.7",
"seaborn~=0.12",
"pandas~=1.5",
"tensorflow~=2.12",
"tensorflow-probability~=0.20",
"sympy~=1.12",
"tqdm",
],
project_urls={
"Bug Reports": "https://github.com/DiddiZ/donk.ai/issues",
"Source": "https://github.com/DiddiZ/donk.ai",
},
)