-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (35 loc) · 1.15 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
[project]
name = "mt2"
version = "1.2.3"
description = "Stransverse mass computation as a numpy ufunc."
authors = [
{ name = "Tom Gillam", email = "tpgillam@googlemail.com" },
{ name = "Rupert Tombs" },
{ name = "Christopher Lester" },
]
readme = "README.rst"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["mt2"]
dependencies = ["numpy>=1.19.3"]
requires-python = ">= 3.9"
urls = { Homepage = "https://github.com/tpgillam/mt2" }
[build-system]
requires = ["setuptools>=61.0", "numpy"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# FIXME: this is a workaround; see:
# - https://github.com/astral-sh/uv/issues/9513
# - https://github.com/pypa/setuptools/issues/4759
license-files = []