-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.41 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"cython>=3",
"numpy>=2.0.0rc1",
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "lintegrate"
authors = [{name = "Matthew Pitkin", email = "[email protected]"}]
urls = {Homepage = "https://github.com/mattpitkin/lintegrate", Documentation = "https://lintegrate.readthedocs.io/"}
description = "Python functions implementing numerical integration of functions in log-space."
license = {text = "GPLv3"}
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = [
"version",
]
requires-python = ">=3.9, <4"
dependencies = [
"numpy",
]
[project.optional-dependencies]
docs = [
"autodoc",
"pydata-sphinx-theme",
"sphinx >= 2.0",
"sphinx-panels",
"sphinxcontrib-napoleon",
"sphinxext-remoteliteralinclude",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["lintegrate*"]
[tool.setuptools.package-data]
lintegrate = ["*.pyx"]
[tool.setuptools_scm]
write_to = "src/lintegrate/_version.py"