-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
68 lines (66 loc) · 1.76 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
64
65
66
67
68
from setuptools import setup, find_packages
setup(
name="flygym",
version="1.1.0",
author="Neuroengineering Laboratory, EPFL",
author_email="[email protected]",
description=(
"Implementation of NeuroMechFly v2, framework for simulating embodied "
"sensorimotor control in adult Drosophila"
),
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<2",
"scipy",
"pyyaml",
"jupyter",
"mediapy",
"imageio",
"imageio[pyav]",
"imageio[ffmpeg]",
"tqdm",
"mujoco==3.2.3",
"dm_control==1.0.23",
"numba",
"opencv-python",
],
extras_require={
"dev": [
"sphinx",
"sphinxcontrib.googleanalytics",
"furo",
"numpydoc",
"pytest",
"ruff",
"black==23.3.0",
"black[jupyter]",
"shapely",
"rasterio",
"requests",
],
"examples": [
"joblib",
"networkx",
"lightning",
"tensorboardX",
"pandas",
"scikit-learn",
"seaborn",
"torch<=2.5.0",
"phiflow",
"h5py",
"toolz", # remove when it's added to flyvis's requirements.txt (flyvis #2)
],
},
url="https://neuromechfly.org/",
long_description=open("README.md", encoding="UTF-8").read(),
long_description_content_type="text/markdown",
)