-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
64 lines (55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=42", "wheel", "cffi>=1.0", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "spectresc"
version = "1.1.0"
description = "SpectRes in C"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GPL-3.0"}
authors = [{name = "Marco C Lam", email = "mlam@roe.ac.uk"}]
maintainers = [{name = "Marco C Lam", email = "mlam@roe.ac.uk"}]
dependencies = [
"numpy",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C",
"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",
"Programming Language :: Python :: 3.14",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[project.urls]
Download = "https://github.com/cylammarco/SpectResC"
[toolset.cffi]
extra_compile_args = ["-std=c99"]
extra_link_args = []
[toolset.build]
# Set compiler flags
cflags = []
ldflags = []
[toolset.macos]
# Set MacOS specific options
cflags = ['-O3', '-fPIC', '-shared']
ldflags = []
[toolset.linux]
# Set Linux specific options
cflags = ['-O3', '-fPIC', '-shared']
ldflags = []
[toolset.windows]
# Set Windows specific options
cflags = []
ldflags = []
[tool.coverage.run]
relative_files = true
[tool.setuptools]
packages = ["spectresc"]
package-dir = {"" = "src"}