-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
68 lines (63 loc) · 1.76 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
61
62
63
64
65
66
67
68
import setuptools
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CURRENT_DIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="dopamax",
version="0.2.0",
author="Ryan Strauss",
author_email="[email protected]",
description="Reinforcement learning in pure JAX.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rystrauss/dopamax",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
packages=setuptools.find_packages(),
include_package_data=True,
platforms="any",
python_requires=">=3.9",
entry_points={
"console_scripts": [
"dopamax=dopamax._scripts.cli:cli",
],
},
install_requires=[
"jax>=0.4.23",
"jaxlib>=0.4.23",
"chex>=0.1.6",
"brax>=0.9.0",
"click>=8.1.3",
"distrax>=0.1.3",
"dm-env>=1.6",
"dm-haiku>=0.0.9",
"pgx>=2.0.1",
"einops>=0.6.0",
"ffmpeg>=1.4",
"imageio>=2.25.1",
"mctx>=0.0.5",
"moviepy>=1.0.3",
"ml-collections>=0.1.1",
"optax>=0.1.7",
"pygame>=2.1.3",
"numpy>=1.22.4",
"rlax>=0.1.5",
"tqdm>=4.64.1",
"wandb>=0.13.10",
],
tests_require=[
"pytest",
"gymnasium==0.29.1",
],
)