-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (30 loc) · 970 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
33
[build-system]
requires = ["setuptools>=65.0", "setuptools_scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "uncertainty-datatypes"
authors = [
{ name="Atenea Research Group, University of Malaga, Spain" },
]
description = "Uncertainty Datatypes Library"
readme = "README.md"
requires-python = ">=3.11"
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries"
]
dependencies = [
"numpy>=1.25.0"
]
dynamic = ["version"]
[tool.setuptools_scm]
[project.urls]
"Homepage" = "https://atenea.lcc.uma.es"
"Repository" = "https://github.com/atenearesearchgroup/uncertainty-datatypes-python"
"Bug Tracker" = "https://github.com/atenearesearchgroup/uncertainty/issues"