-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
43 lines (34 loc) · 940 Bytes
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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "corsikaio/_version.py"
[project]
name = "corsikaio"
description = "Reader for corsika binary output files using numpy"
readme = { file = "README.md", content-type = "text/markdown" }
urls = { Homepage = "http://github.com/cta-observatory/pycorsikaio" }
maintainers = [
{ name = "Maximilian Linhoff", email = "maximilian.linhoff@cta-observatory.org" }
]
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"numpy",
]
dynamic = ["version"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages]
find = { exclude = ["corsikaio._dev_version*"] }
[project.optional-dependencies]
dev = ["setuptools_scm[toml]"]
zstd = ["zstandard"]
tests = ["pytest", "scipy"]
all = [
"corsikaio[zstd,tests]",
]
[tool.pytest.ini_options]
addopts = "-v"
[tool.flake8]
max-line-length = 90