-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
54 lines (46 loc) · 1.74 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta" # Setuptools used because compiling C++ code requires CMake
# Manually specify packages and their directories
[tool.setuptools.package-dir]
evogym = "evogym"
"evogym.envs" = "evogym/envs"
"evogym.simulator_cpp" = "evogym/simulator" # C++ simulator package renamed
# Manually specify package data
[tool.setuptools.package-data]
"evogym.envs" = ["sim_files/*.json"]
[tool.cibuildwheel]
# Skip 32-bit builds, and musllinux builds
skip = ["*-win32", "*-manylinux_i686", "*-musllinux*"]
[tool.cibuildwheel.linux]
manylinux-x86_64-image = "manylinux_2_28"
manylinux-pypy_x86_64-image = "manylinux_2_28"
before-all = "yum install -y libXrandr-devel libXinerama-devel libXcursor-devel libXi-devel mesa-libGLU-devel"
test-command = "echo 'installed'"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = "apk add xorg-dev libglu1-mesa-dev libglew-dev xvfb" # these package names may be wrong, untested
[project]
name = "evogym"
version = "2.0.0"
authors = [
{ name="Jagdeep Singh Bhatia", email="[email protected]" },
]
description = "Evolution Gym: A benchmark for developing and evaluating soft robot co-design algorithms."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["evolution", "gym", "evolution gym", "soft robotics", "benchmark", "co-design"]
requires-python = ">=3.7, <3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"gymnasium",
"numpy<2.0.0",
]
[project.urls]
Homepage = "https://github.com/EvolutionGym/evogym"
Issues = "https://github.com/EvolutionGym/evogym/issues"
Documentation = "https://evolutiongym.github.io/"