-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.06 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
[project]
name = "gimpact"
version = "1.0.1"
description = "An unofficial python extension for the GImpact collision library"
authors = [
{name = "Stephen Nneji", email="[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.6"
keywords = ["GImpact", "Trimesh", "Collision detection", "Cython"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Cython"
]
[tool.setuptools]
py-modules = []
[build-system]
requires = ["setuptools", "wheel", "numpy>=1.18.5", "Cython>=0.29.21"]
build-backend = "setuptools.build_meta"