|
1 | 1 | [build-system] |
2 | 2 |
|
3 | 3 | requires = [ |
4 | | - "setuptools>=56,!=61.0.0", |
5 | | - "setuptools_scm[toml]>=6.2", |
| 4 | + "setuptools>=62.0.0", |
| 5 | + "setuptools_scm[toml]>=8.0.1", |
6 | 6 | "wheel" |
7 | 7 | ] |
8 | | - |
9 | 8 | build-backend = 'setuptools.build_meta' |
10 | 9 |
|
| 10 | +[project] |
| 11 | +name = "xrayvisim" |
| 12 | +description = "An open-source Python library for Fourier or synthesis X-Ray imaging instruments." |
| 13 | +requires-python = ">=3.9" |
| 14 | +readme = {file = "README.rst", content-type="text/x-rst"} |
| 15 | +license = "BSD-3-Clause" |
| 16 | +license-files = ["LICENSE.rst"] |
| 17 | +authors = [{name="Shane Maloney", email = "shane.maloney@dias.ie"}] |
| 18 | +dependencies = [ |
| 19 | + "astropy>=6.0.0", |
| 20 | + "numpy>=1.24.0", |
| 21 | + "packaging>=23.0", |
| 22 | + "scipy>=1.13", |
| 23 | + "xarray>=2023.5.0" |
| 24 | +] |
| 25 | +dynamic = ["version"] |
| 26 | +keywords = ["solar", "physics", "solar", "sun", "x-rays"] |
| 27 | +classifiers = [ |
| 28 | + "Development Status :: 3 - Alpha", |
| 29 | + "Intended Audience :: Science/Research", |
| 30 | + "Natural Language :: English", |
| 31 | + "Operating System :: OS Independent", |
| 32 | + "Programming Language :: Python", |
| 33 | + "Programming Language :: Python :: 3", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "Programming Language :: Python :: 3.11", |
| 37 | + "Programming Language :: Python :: 3.12", |
| 38 | + "Topic :: Scientific/Engineering :: Physics" |
| 39 | +] |
| 40 | + |
| 41 | +[project.optional-dependencies] |
| 42 | +map = [ |
| 43 | + "sunpy[map]>=5.1.0" |
| 44 | +] |
| 45 | +all = ["xrayvisim[map]"] |
| 46 | +tests = [ |
| 47 | + "matplotlib>=3.8.0", |
| 48 | + "pytest-astropy>=0.11.0", |
| 49 | + "pytest-mpl>=0.16", |
| 50 | + "pytest-xdist>=3.0.2", |
| 51 | + "pytest>=7.1.0" |
| 52 | +] |
| 53 | +docs = [ |
| 54 | + "sphinx>=6.0.0", |
| 55 | + "sphinx-automodapi>=0.14.1", |
| 56 | + "packaging>=23.0", |
| 57 | + "sphinx-changelog>=1.5.0", |
| 58 | + "sphinx-design>=0.2.0", |
| 59 | + "sphinx-gallery>=0.13.0", |
| 60 | + "sphinxext-opengraph>=0.6.0", |
| 61 | + "xrayvisim[all]", |
| 62 | + "pydata-sphinx-theme>=0.16.0" |
| 63 | +] |
| 64 | +dev = ["xrayvisim[tests,docs]"] |
| 65 | + |
| 66 | + |
| 67 | +[project.urls] |
| 68 | +Homepage = "https://xrayvision.readthedocs.io" |
| 69 | +"Source Code" = "https://github.com/TCDSolar/xrayvision" |
| 70 | +Download = "https://pypi.org/project/xrayvisim" |
| 71 | +Documentation = "https://xrayvision.readthedocs.io/" |
| 72 | +Changelog = "https://xrayvision.readthedocs.io/en/latest/whatsnew/changelog.html" |
| 73 | +"Issue Tracker" = "https://github.com/TCDSolar/xrayvision/issues" |
| 74 | + |
| 75 | + |
| 76 | +[tool.setuptools] |
| 77 | +zip-safe = false |
| 78 | +include-package-data = true |
| 79 | +platforms = ["any"] |
| 80 | +provides = ["xrayvisim"] |
| 81 | + |
| 82 | +[tool.setuptools.packages.find] |
| 83 | +include = ["xrayvision*"] |
| 84 | +exclude = ["xrayvision._dev*"] |
| 85 | + |
| 86 | +[tool.setuptools.package-data] |
| 87 | +xrayvisim = ["data/*"] |
| 88 | + |
| 89 | +[tool.setuptools_scm] |
| 90 | +version_file = "xrayvision/_version.py" |
| 91 | + |
| 92 | +[tool.mypy] |
| 93 | +disable_error_code = "import-untyped" |
| 94 | +python_version = "py39" |
| 95 | + |
11 | 96 | [ tool.gilesbot ] |
12 | 97 |
|
13 | 98 | [ tool.gilesbot.pull_requests ] |
|
0 commit comments