forked from lmfit/uncertainties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (58 loc) · 2.11 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
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "uncertainties"
version = "3.1.7"
authors = [
{name = "Eric O. LEBIGOT (EOL)", email = "[email protected]"},
]
description = """\
Transparent calculations with uncertainties on the \
quantities involved (aka error propagation); \
fast calculation of derivatives').\
"""
readme = "README.rst"
requires-python = ">=3.1"
keywords = [
"error propagation", "uncertainties", "uncertainty calculations",
"standard deviation", "derivatives", "partial derivatives",
"differentiation"
]
license = {text = "Revised BSD License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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 :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = []
[project.urls]
Documentation = "http://uncertainties-python-package.readthedocs.io/"
Repository = "https://github.com/lmfit/uncertainties"
Issues = "https://github.com/lmfit/uncertainties/issues"
Changelog = "https://github.com/lmfit/uncertainties/blob/master/CHANGES.rst"
[project.optional-dependencies]
optional = ["numpy"]
[tool.pytest.ini_options]
testpaths = ["tests"]