-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 1.03 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
31
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="banditzoo",
version="0.0.7",
author="Baihan Lin",
author_email="doerlbh@gmail.com",
description="Python library of bandits and RL agents in different real-world environments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/doerlbh/BanditZoo",
project_urls={
"Bug Tracker": "https://github.com/doerlbh/BanditZoo/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
license="GPLv3",
package_dir={"": "banditzoo"},
packages=setuptools.find_packages(where="banditzoo"),
python_requires=">=3.6",
install_requires=["numpy>=1.16.5", "pandas", "scipy"],
test_suite="nose.collector",
tests_require=["nose"],
include_package_data=True,
)