-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.47 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
[project]
name = "lvec"
version = "0.1.1"
description = "A package for handling Lorentz vectors with NumPy and Awkward array backends"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Mohamed Elashri", email = "lvec@elashri.com" }
]
keywords = ["physics", "lorentz", "vector", "numpy", "awkward"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.20.0",
"awkward>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
[project.urls]
Homepage = "https://github.com/MohamedElashri/lvec"
Documentation = "https://github.com/MohamedElashri/lvec#readme"
Repository = "https://github.com/MohamedElashri/lvec"
Issues = "https://github.com/MohamedElashri/lvec/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["lvec/tests"]
python_files = ["test_*.py"]
addopts = "-v"
[tool.hatch.build.targets.wheel]
packages = ["lvec"]