-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spm-python"
dynamic = ["version"]
description = "Python bindings for the SPM software."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Johan Medrano", email = "[email protected]"},
{name = "Yael Balbastre", email = "[email protected]"}]
requires-python = ">=3.9,<3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"mpython-core"
]
[project.urls]
Repository = "https://github.com/spm/spm-python"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
spm = ["_spm/_spm.ctf"]
[tool.setuptools.dynamic]
version = {attr = "spm._version.__version__"}
[tool.ruff]
include = ["pyproject.toml", "spm/**/*.py", "tests/**/*.py", "scripts/**/*.py"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F811"]