-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
60 lines (55 loc) · 1.98 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from obp.version import __version__
from setuptools import setup, find_packages
from os import path
import sys
here = path.abspath(path.dirname(__file__))
sys.path.insert(0, path.join(here, "obp"))
print("version")
print(__version__)
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
package_data_list = ["obp/policy/conf/prior_bts.yaml", "obp/dataset/obd"]
setup(
name="obp",
version=__version__,
description="Open Bandit Pipeline: a python library for bandit algorithms and off-policy evaluation",
url="https://github.com/st-tech/zr-obp",
author="Yuta Saito",
author_email="[email protected]",
keywords=["bandit algorithms", "off-policy evaluation"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"matplotlib>=3.4.3",
"mypy-extensions>=0.4.3",
"numpy>=1.21.2",
"pandas>=1.3.2",
"pyyaml>=5.1",
"seaborn>=0.10.1",
"scikit-learn>=1.0.2",
"scipy>=1.7.3",
"torch>=1.9.0",
"tqdm>=4.62.2",
"pyieoe>=0.1.1",
"pingouin>=0.4.0",
],
license="Apache License",
packages=find_packages(
exclude=["benchmark", "docs", "examples", "obd", "tests", "slides"]
),
package_data={"obp": package_data_list},
include_package_data=True,
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
],
)