forked from ipc-sim/ipc-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.13 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
# "cmake>=3.14",
]
build-backend = "setuptools.build_meta"
[project]
name = "ipctk"
version = "1.0.0"
authors = [
{ name="Zachary Ferguson", email="[email protected]" },
]
description = "A set of reusable functions to integrate Incremental Potential Contact (IPC) into a simulation."
readme = "docs/PYPI_README.md"
license = { file="LICENSE" }
classifiers = [
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.6"
dependencies = [
"numpy",
"scipy",
]
keywords = [
"IPC",
"simulation",
"physics",
"science",
"reserch",
]
[project.urls]
"Homepage" = "https://ipc-sim.github.io/ipc-toolkit/"
"Bug Tracker" = "https://github.com/ipc-sim/ipc-toolkit/issues"
"Source Code" = "https://github.com/ipc-sim/ipc-toolkit"
[tools.cibuildwheel]
build-frontend = "build"