-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.44 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
37
38
39
40
41
42
[build-system]
requires = ["setuptools >= 61.0", "wheel >= 0.29.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pync"
version = "1.0.0-b.2"
authors = [
{ name="Jacob Lee", email="[email protected]" },
]
description = "A Python package containing C-extended modules for numerical differential and integral computation"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
"Homepage" = "https://github.com/JacobLee23/pync"
"Issue Tracker" = "https://github.com/JacobLee23/pync/issues/"
[tool.setuptools]
packages = ["pync"]
[tool.setuptools]
ext-modules = {
{ name = "pync.differential", sources = ["src/differential.c"], include-dirs = ["include"] },
{ name = "pync.integral", sources = ["src/integral.c"], include-dirs = ["include"] },
{ name = "pync.maclaurin", sources = ["src/maclaurin.c"], include-dirs = ["include"] },
{ name = "pync.numbers", sources = ["src/numbers.c"], include-dirs = ["include"] },
}