-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.11 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.11 KB
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
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name="dreamgym",
version="0.1.0",
description="DreamGym: Scaling Agent Learning via Experience Synthesis",
author="Research Reproduction Team",
python_requires=">=3.9",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=requirements,
extras_require={
"dev": [
"black>=23.3.0",
"flake8>=6.0.0",
"mypy>=1.3.0",
"pytest>=7.3.0",
"pytest-cov>=4.1.0",
],
},
entry_points={
"console_scripts": [
"dreamgym-train=dreamgym.training.train:main",
"dreamgym-eval=dreamgym.training.evaluate:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)