-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.61 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
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "showerpipe/_version.py"
[project]
name = "showerpipe"
dynamic = ["version"]
authors = [{name = "Jacan Chaplais"}]
maintainers = [{name = "Jacan Chaplais"}]
description = "Data pipeline tools for particle shower and hadronisation."
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
dependencies = [
"requests",
"lxml",
"numpy",
"rich",
]
[project.urls]
repository = "https://github.com/jacanchaplais/showerpipe"
documentation = "https://showerpipe.readthedocs.io"
[project.optional-dependencies]
dev = [
"pre-commit ==2.19.0",
"flake8 ==3.9.2",
"tox ==3.24.3",
"pytest ==6.2.5",
"pytest-cov ==2.12.1",
"hypothesis ==6.62.0",
"mypy ==0.910",
]
[tool.black]
line-length = 79
[tool.mypy]
mypy_path = "showerpipe"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true
[tool.pyright]
include = ["showerpipe"]
exclude = ["**/node_modules", "**/__pycache__"]
defineConstant = { DEBUG = true }
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.8"
pythonPlatform = "Linux"