|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=40.8.0, <64", |
| 4 | + "wheel", |
| 5 | + "Cython>=0.26", |
| 6 | + "numpy", |
| 7 | +] |
| 8 | +build-backend = "setuptools.build_meta" |
| 9 | + |
| 10 | +[project] |
| 11 | +name = "tofu" |
| 12 | +dynamic = ["version"] |
| 13 | +description="A python library for Tomography for Fusion" |
| 14 | +readme = "README.md" |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 4 - Beta", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.8", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3 :: Only", |
| 23 | +] |
| 24 | +authors = [ |
| 25 | + { name = "Didier Vezinet", email = "didier.vezinet@gmail.com" } |
| 26 | +] |
| 27 | +requires-python = ">=3.8" |
| 28 | +dependencies = [ |
| 29 | + "setuptools>=40.8.0, <64", |
| 30 | + "numpy", |
| 31 | + "scipy", |
| 32 | + # "scikit-sparse", |
| 33 | + # "scikit-umfpack", |
| 34 | + "matplotlib", |
| 35 | + "contourpy", |
| 36 | + "requests", |
| 37 | + "svg.path", |
| 38 | + "Polygon3", |
| 39 | + "cython>=0.26", |
| 40 | + "datastock>=0.0.49", |
| 41 | + "bsplines2d>=0.0.21", |
| 42 | + "spectrally>=0.0.9", |
| 43 | +] |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +interactive = ["PyQt5", "PySide2"] |
| 47 | + |
| 48 | +[tool.setuptools.packages.find] |
| 49 | +where = ["tofu"] |
| 50 | + |
| 51 | +[tool.setuptools.package-data] |
| 52 | +"*" = ["*.txt", "*.csv", "*.pxd", "*.in", "*.toml", "*.npz", "*.svg", "*.sh", "*.f"] |
| 53 | + |
| 54 | +[tool.coverage.report] |
| 55 | +precision = 2 |
| 56 | +fail_under = 85 |
| 57 | + |
| 58 | +[tool.pytest.ini_options] |
| 59 | +testpaths = [ |
| 60 | + "tofu.tests", |
| 61 | +] |
| 62 | + |
| 63 | +[project.urls] |
| 64 | +Homepage = "https://tofuproject.github.io/tofu/index.html" |
| 65 | +Documentation = "https://tofuproject.github.io/tofu/index.html" |
| 66 | +Repository = "https://github.com/ToFuProject/tofu" |
| 67 | +"Bug Tracker" = "https://github.com/ToFuProject/tofu/issues" |
0 commit comments