forked from adaptive-intelligent-robotics/QDax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.58 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
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="adaptive.intelligent.robotics@gmail.com",
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",
"jax>=0.4.16",
"jaxlib>=0.4.16", # necessary to build the doc atm
"jumanji>=0.1.3",
"flax>=0.7.4",
"brax>=0.1.2",
"gym>=0.26.2",
"numpy>=1.24.1",
"optax>=0.1.7",
"scikit-learn>=1.0.2",
"scipy>=1.8.0",
],
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.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)