-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
54 lines (46 loc) · 966 Bytes
/
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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
name = "foresee-hep"
version = "0.1.1"
authors = [
{ name="Felix Kling", email="[email protected]" },
{ name="Sebastian Trojanowski", email="[email protected]" },
]
description = "FORward Experiment SEnsitivity Estimator"
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.13.3",
"matplotlib>=2.0.0",
"scipy>=1.0.0",
"scikit-hep>=3.1.0",
]
[project.urls]
Homepage = "https://github.com/KlingFelix/FORESEE"
Documentation = "https://arxiv.org/abs/2105.07077"
[tool.black]
include = '(\.py$|\.ipynb$)'
exclude = '''
(
\.git
| \.npy
| \.pyc
| \.ipynb_checkpoints
| \.gitignore
| \.DS_Store
| LLP_spectra
| results
| events
| dist
)
'''