-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.24 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.24 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
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name="max",
version="0.1.0",
description="A JAX-based Reinforcement Learning library for model-based and model-free control",
author="Fernando Palafox",
author_email="fernandopalafox@utexas.edu",
packages=find_packages(),
python_requires=">=3.8,<3.14",
install_requires=[
"jax>=0.4.0",
"jaxlib>=0.4.0",
"flax>=0.8.0",
"optax>=0.2.0",
"numpy>=1.20.0",
"matplotlib>=3.5.0",
"scipy>=1.7.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"black>=22.0.0",
"isort>=5.0.0",
],
"wandb": [
"wandb>=0.15.0",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)