forked from NeLy-EPFL/flygym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (61 loc) · 1.64 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
from setuptools import setup, find_packages
setup(
name="flygym",
version="1.0.0-pre.2",
author="Neuroengineering Laboratory, EPFL",
author_email="sibo.wang@epfl.ch",
description="Gym environments for NeuroMechFly in various physics simulators",
packages=find_packages(),
package_data={"flygym": ["data/*", "config.yaml"]},
include_package_data=True,
python_requires=">=3.9,<3.13",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
install_requires=[
"gymnasium",
"numpy",
"scipy",
"pyyaml",
"jupyter",
"mediapy",
"imageio",
"imageio[pyav]",
"imageio[ffmpeg]",
"tqdm",
"mujoco>=2.1.2",
"dm_control",
"numba",
"opencv-python",
],
extras_require={
"dev": [
"sphinx",
"sphinxcontrib.googleanalytics",
"furo",
"numpydoc",
"pytest",
"ruff",
"black==23.3.0",
"black[jupyter]",
"shapely",
"rasterio",
"requests",
],
"examples": [
"networkx",
"lightning",
"tensorboardX",
"pandas",
"scikit-learn",
"seaborn",
"torch",
"phiflow",
"flyvision @ https://github.com/Nely-EPFL/flyvis/archive/refs/heads/main.zip",
],
},
url="https://neuromechfly.org/",
long_description=open("README.md", encoding="UTF-8").read(),
long_description_content_type="text/markdown",
)