-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 769 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
def read_requirements(filename):
with open(filename) as f:
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
setup(
name="rl-square",
version="0.0.2",
packages=find_packages(),
include_package_data=True,
install_requires=read_requirements('requirements.txt'),
python_requires='>=3.10',
author="Chenmien Tan, Simon Yu, Lanbo Lin, Ze Zhang, Yuanwu Xu, Chenhao Jiang, Tianyuan Yang, Sicong Xie, Guannan Zhang",
author_email="chenmientan@outlook.com",
description="RL2: Ray Less Reinforcement Learning",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/ChenmienTan/RL2"
)