forked from pyomeca/bioptim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.31 KB
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>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bioptim"
description = "An optimization framework for Optimal Control Programming in biomechanics"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Pariterre", email = "pariterre@hotmail.com" }
]
keywords = ["biorbd", "Ipopt", "CasADi", "Optimal control", "biomechanics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = []
[project.optional-dependencies]
conda_only = [
"biorbd >=1.12.0",
"pyqt",
"pyqtgraph",
"python-graphviz",
]
[project.urls]
Homepage = "https://github.com/bioptim/bioptim"
# ------------------------------
# Packaging configuration
# ------------------------------
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "bioptim.misc.__version__.__version__" }
# Auto-discover all packages inside the repo root
[tool.setuptools.packages.find]
where = ["."]
include = ["bioptim*"]
# ------------------------------
# Data files (for *.bioMod files)
# ------------------------------
[tool.setuptools.package-data]
bioptim = ["examples/**/*.bioMod", "examples/**/*.vtp", "examples/**/*.STL"]