-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (76 loc) · 1.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=62", "wheel", "setuptools_scm>=6.2", "pip>=21.3"]
build-backend = "setuptools.build_meta"
[project]
name = "colliderscope"
dynamic = ["version"]
authors = [{name = "Jacan Chaplais"}]
maintainers = [{name = "Jacan Chaplais"}]
description = "Plotting tools for Monte-Carlo particle showers."
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 = [
"numpy >=1.21.0",
"pandas",
"scipy",
"pyvis <=0.1.9",
"colour",
"webcolors",
"graphicle >=0.4.1",
"plotly",
"more-itertools >=2.1",
]
[project.urls]
repository = "https://github.com/jacanchaplais/colliderscope"
documentation = "https://colliderscope.readthedocs.io"
[project.optional-dependencies]
dev = [
"pre-commit ==2.19.0",
"flake8 ==3.9.2",
"pytest ==6.2.5",
"pytest-cov ==2.12.1",
"mypy ==1.0.1",
]
webui = [
"showerpipe",
"click",
"dash",
]
[project.scripts]
colliderscope = "colliderscope.__main__:main"
[tool.setuptools_scm]
write_to = "colliderscope/_version.py"
[tool.black]
line-length = 79
[tool.pytest.ini_options]
addopts = "--cov=colliderscope"
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "colliderscope"
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 = ["colliderscope"]
exclude = ["**/node_modules", "**/__pycache__"]
defineConstant = { DEBUG = true }
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.8"
pythonPlatform = "Linux"