forked from AboudyKreidieh/h-baselines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 839 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
#!/usr/bin/env python3
# flake8: noqa
"""Setup script for the h-baselines repository."""
from os.path import dirname, realpath
from setuptools import find_packages, setup
from hbaselines.version import __version__
def _read_requirements_file():
req_file_path = '%s/requirements.txt' % dirname(realpath(__file__))
with open(req_file_path) as f:
return [line.strip() for line in f]
setup(
name='h-baselines',
version=__version__,
packages=find_packages(),
install_requires=_read_requirements_file(),
description='h-baselines: a repository of high-performing and benchmarked '
'hierarchical reinforcement learning models and algorithm',
author='Aboudy Kreidieh',
url='https://github.com/AboudyKreidieh/h-baselines',
author_email='aboudy@berkeley.edu',
zip_safe=False,
)