forked from LLewark/khoca
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.18 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
[build-system]
requires = [
"cython",
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "khoca"
authors = [
{name = "Lukas Lewark", email = "lukas.lewark@math.ethz.ch"},
{name = "Sebastian Oehms", email = "seb.oehms@gmail.com"}
]
maintainers = [
{name = "Sebastian Oehms", email = "seb.oehms@gmail.com"}
]
readme = {file = "README.md", content-type = "text/markdown"}
description = "Khoca as pip installable package"
keywords = ["Knot theory, Khovanov homology"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering :: Mathematics"
]
dynamic = ["version", "license"]
[project.urls]
Homepage = "https://people.math.ethz.ch/~llewark/khoca.php"
Repository = "https://github.com/soehms/khoca/"
[tool.cibuildwheel]
build = ["cp3*"]
archs = ["auto64"]
before-all = "sh before-all.sh"
before-build = "sh before-build.sh"
test-requires = ["py", "sympy", "database_knotinfo"]
test-command = "sh {project}/test-command.sh {project}"