-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
58 lines (53 loc) · 1.84 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
import os
from setuptools import find_packages, setup
from qdax import __version__
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="qdax",
version=__version__,
packages=find_packages(),
url="https://github.com/adaptive-intelligent-robotics/QDax",
license="MIT",
author="AIRL and InstaDeep Ltd",
author_email="[email protected]",
description="A Python Library for Quality-Diversity and NeuroEvolution",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"absl-py>=1.0.0",
"brax>=0.10.4",
"chex>=0.1.86",
"flax>=0.8.5",
"gym>=0.26.2",
"jax>=0.4.28",
"jaxlib>=0.4.28", # necessary to build the doc atm
"jinja2>=3.1.4",
"jumanji>=0.3.1",
"numpy>=1.26.4",
"optax>=0.1.9",
"scikit-learn>=1.5.1",
"scipy>=1.10.1",
"tensorflow-probability>=0.24.0",
],
extras_require={
"cuda12": ["jax[cuda12]>=0.4.28"],
},
dependency_links=[
"https://storage.googleapis.com/jax-releases/jax_releases.html",
],
keywords=["Quality-Diversity", "NeuroEvolution", "Reinforcement Learning", "JAX"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)