-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nuVeto"
dynamic = ["version"]
maintainers = [
{name = "Tianlu Yuan", email = "tyuan@icecube.wisc.edu"},
]
description = "Package implements the formalism for calculating passing fraction as discussed in JCAP07(2018)047."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.9"
dependencies = [
"numpy>=1.7.0, <3",
"scipy>=1.6.0, <2",
"MCEq>=1.4.0, <2",
"pandas<4"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
plotting = ["matplotlib"]
pythia8 = ["pythia8mc", "matplotlib"]
testing = ["pytest"]
[project.urls]
Repository = "https://github.com/tianluyuan/nuVeto.git"
[tool.setuptools.packages.find]
where = ["src/"]
[tool.setuptools_scm]
[tool.ruff]
exclude = ["external"]