|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = [ |
| 4 | + "setuptools", |
| 5 | + "setuptools-scm", |
| 6 | +] |
| 7 | + |
| 8 | +[project] |
| 9 | +authors = [ |
| 10 | + {name = "Matthew A. Price"}, |
| 11 | + {name = "Jason D. McEwen"}, |
| 12 | + {name= "Contributors"} |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Programming Language :: Python :: 3", |
| 16 | + "Programming Language :: Python :: 3 :: Only", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Programming Language :: Python :: 3.12", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Intended Audience :: Science/Research", |
| 25 | +] |
| 26 | +description = "Differentiable and accelerated spherical transforms with JAX" |
| 27 | +dynamic = [ |
| 28 | + "version", |
| 29 | + "dependencies", |
| 30 | + "optional-dependencies", |
| 31 | +] |
| 32 | +keywords = [ |
| 33 | +] |
| 34 | +name = "s2fft" |
| 35 | +readme = ".pip_readme.rst" |
| 36 | +requires-python = ">=3.8" |
| 37 | +license.file = "LICENSE.txt" |
| 38 | +urls.homepage = "https://github.com/astro-informatics/s2fft" |
| 39 | + |
| 40 | + |
| 41 | +[tool.pytest.ini_options] |
| 42 | +addopts = "--color=yes -v" |
| 43 | +testpaths = [ |
| 44 | + "tests", |
| 45 | +] |
| 46 | +filterwarnings = [ |
| 47 | + "error", |
| 48 | + "ignore::UserWarning", |
| 49 | + "ignore::DeprecationWarning", |
| 50 | + "ignore:FutureWarning", |
| 51 | +] |
| 52 | + |
| 53 | +[tool.setuptools] |
| 54 | +packages = ["s2fft"] |
| 55 | + |
| 56 | +[tool.setuptools.dynamic] |
| 57 | +dependencies = {file = ["requirements/requirements-core.txt"]} |
| 58 | +optional-dependencies.docs = { file = ["requirements/requirements-docs.txt"] } |
| 59 | +optional-dependencies.plotting = { file = ["requirements/requirements-plotting.txt"] } |
| 60 | +optional-dependencies.tests = { file = ["requirements/requirements-tests.txt"] } |
| 61 | + |
| 62 | +[tool.setuptools.package-data] |
| 63 | +s2fft = ["default-logging-config.yaml"] |
| 64 | + |
| 65 | +[tool.setuptools_scm] |
| 66 | +local_scheme = "no-local-version" |
| 67 | +write_to = "s2fft/_version.py" |
0 commit comments