-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.03 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "nuVeto"
dynamic = ["version"]
maintainers = [
{name = "Tianlu Yuan", email = "[email protected]"},
]
description = "Package implements the formalism for calculating passing fraction as discussed in JCAP07(2018)047."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">= 3.7"
dependencies = [
"numpy<2.0.0",
"scipy<1.14.0",
"MCEq",
"pandas"
]
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]
exclude = ["paper*", "scripts*", "build*"]
[tool.setuptools_scm]