-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.39 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
[project]
name = "combisurf"
license = "GPL-2.0-or-later"
version = "0.1.0"
authors = [
{name = "Vincent Delecroix"},
]
dependencies = [
]
description = "Cell decomposition of surfaces in Python"
requires-python = ">= 3.9"
readme = "README.md"
keywords = ["surface", "topology", "cell", "cell decomposition", "cell complex", "map", "combinatorial map", "graph", "embedded graph", "fat graph", "ribbon graph"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
]
[build-system]
requires = ["hatchling", "hatch-cython", "Cython", "setuptools"]
build-backend = "hatchling.build"
[tool.setuptools]
py-modules = []
[tool.hatch.build.targets.wheel.hooks.cython]
dependencies = ["hatch-cython"]
[tool.hatch.build.targets.wheel]
packages = ["combisurf"]
[tool.hatch.build.targets.wheel.hooks.cython.options]
# Include directories for .h or .cpp files
includes = []
# Include headers from common scientific packages
include_numpy = false
include_pyarrow = false
compile_py = false
# Cython compiler directives
directives = { boundscheck = false, nonecheck = false, wraparound = false, overflowcheck = false, cdivision = true, language_level = 3, binding = true }
# Additional keyword arguments passed to setuptools.Extension()
compile_kwargs = { }