-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
52 lines (44 loc) · 1.69 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
from setuptools import setup, find_packages
from os import path
import sys
from scope_rl.version import __version__
def _requirements_from_text(filename):
return open(filename).read().splitlines()
here = path.abspath(path.dirname(__file__))
sys.path.insert(0, path.join(here, "scope_rl"))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# setup SCOPE-RL
setup(
name="scope-rl",
version=__version__,
description="SCOPE-RL: A pipeline for offline reinforcement learning research and applications",
url="https://github.com/hakuhodo-technologies/scope-rl",
author="Haruka Kiyohara",
author_email="[email protected]",
keywords=[
"off-policy evaluation",
"offline reinforcement learning",
"risk assessment",
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=_requirements_from_text("requirements.txt"),
license="Apache License 2.0",
packages=find_packages(
exclude=[".github", "docs", "examples", "tests"],
),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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",
],
)