-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.55 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
65
66
[project]
name = "spin"
requires-python = ">=3.8"
description = "Developer tool for scientific Python libraries"
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{name = "Scientific Python", email = "spin@discuss.scientific-python.org"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"click",
"tomli; python_version < '3.11'",
"colorama; platform_system == 'Windows'",
"importlib_metadata >= 7"
]
dynamic = ['version']
[project.scripts]
spin = "spin.__main__:main"
[project.optional-dependencies]
lint = ["pre-commit == 3.7.0"]
dev = ["changelist == 0.5"]
[project.urls]
homepage = "https://github.com/scientific-python/spin"
[tool.setuptools.dynamic.version]
attr = 'spin.__version__'
[tool.setuptools.packages.find]
include = ["spin*"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:cannot collect 'test' because it is not a function:",
]
[tool.ruff]
line-length = 88
target-version = "py38"
select = [
"C",
"E",
"F",
"W",
"B",
"I",
"UP",
]
ignore = ["B006", "C901", "E501", "E722"]