-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
32 lines (29 loc) · 927 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "lintsampler"
authors = [
{ name="Aneesh P. Naik", email="[email protected]" },
{ name="Michael S. Petersen", email="[email protected]" },
]
description = "Efficient random sampling via linear interpolation."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.17,<2.0",
"scipy>=1.9,<2.0",
]
keywords = ["python", "statistics", "numpy", "sampling", "random"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/aneeshnaik/lintsampler"
Documentation = "https://lintsampler.readthedocs.io"
[tool.setuptools_scm]