-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.08 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
# "cmake>=3.14",
]
build-backend = "setuptools.build_meta"
[project]
name = "ipctk"
version = "1.4.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", "research"]
[project.urls]
"Homepage" = "https://ipctk.xyz"
"Bug Tracker" = "https://github.com/ipc-sim/ipc-toolkit/issues"
"Source Code" = "https://github.com/ipc-sim/ipc-toolkit"
[tools.cibuildwheel]
build-frontend = "build"