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
|
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyunitsystem"
authors = [
{name = "Henri Payno", email = "henri.payno@esrf.fr"},
{name = "Pierre Paleo", email = "pierre.paleo@esrf.fr"},
{name = "Alessandro Mirone", email = "mirone@esrf.fr"},
{name = "Jérôme Lesaint", email = "jerome.lesaint@esrf.fr"},
]
dynamic = ["version", "readme"]
description = "dummy unit system"
requires-python = ">=3.7"
keywords = ["tomotools", "unit system"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://gitlab.esrf.fr/tomotools/pyunitsystem"
Repository = "https://gitlab.esrf.fr/tomotools/pyunitsystem"
Changelog = "https://gitlab.esrf.fr/tomotools/pyunitsystem/-/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "pyunitsystem.version"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
|