-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 930 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
required = [
'jax>=0.4.13',
'brax',
'chex',
'wandb',
'pandas',
'jaxtyping>=0.2.20',
'matplotlib>=3.5.1',
'mbpo @ git+https://github.com/lasgroup/Model-based-policy-optimizers.git',
]
extras = {}
setup(
name='wtc',
version='0.0.1',
license="MIT",
packages=find_packages(),
python_requires='>=3.9',
install_requires=required,
extras_require=extras,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
],
)