-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.53 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
[build-system]
requires = ["setuptools", "cmake_build_extension", "wheel", "setuptools-git-versioning", "cibuildwheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "tadashi" # as it would appear on PyPI
readme = "README.md"
dynamic = ["dependencies", "version"]
authors = [
{name = "Emil Vatai", email = "emil.vatai@riken.jp" },
{name = "Aleksandr Drozd", email = "aleksandr.drozd@riken.jp" },
{name = "Ivan R. Ivanov", email = "ivanov.i.e641@m.isct.ac.jp"},
{name = "João E. Batista", email = "joao.batista@riken.jp" },
{name = "Yinghao Ren", email = "yinghaoren.cs@gmail.com" },
{name = "Mohamed Wahib", email = "mohamed.attia@riken.jp" },
]
maintainers = [
{name = "Emil Vatai", email = "emil.vatai@gmail.com"}
]
[project.urls]
Homepage = "https://vatai.github.io/projects/tadashi/"
Documentation = "https://tadashi.readthedocs.io/en/latest/"
Source = "https://github.com/vatai/tadashi/"
[project.scripts]
scop-detector = "tadashi._scripts:scop_detector"
scop-print = "tadashi._scripts:scop_printer"
[tool.setuptools]
packages = ["tadashi"]
[tool.setuptools_scm]
version_file = "tadashi/_version.py"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"tadashi" = ["*.pxd", "include/*"]
[tool.cibuildwheel]
build-frontend="build[uv]"
before-all = ["third_party/install.sh"]
build = "*manylinux*" # todo comment this out after size increase
# manylinux-x86_64-image = "manylinux-mod"