|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] |
| 2 | +requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "pygmt" |
| 7 | +description = "A Python interface for the Generic Mapping Tools" |
| 8 | +readme = "README.rst" |
| 9 | +requires-python = ">=3.8" |
| 10 | +license = {text = "BSD License"} |
| 11 | +authors = [{name = "The PyGMT Developers", email = "pygmt.team@gmail.com"}] |
| 12 | +maintainers = [{name = "The PyGMT Developers", email = "pygmt.team@gmail.com"}] |
| 13 | +keywords = [] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Science/Research", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "Intended Audience :: Education", |
| 19 | + "Topic :: Scientific/Engineering", |
| 20 | + "Topic :: Software Development :: Libraries", |
| 21 | + "Programming Language :: Python :: 3.8", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "License :: OSI Approved :: BSD License", |
| 25 | +] |
| 26 | +dependencies = [ |
| 27 | + "numpy>=1.20", |
| 28 | + "pandas", |
| 29 | + "xarray", |
| 30 | + "netCDF4", |
| 31 | + "packaging" |
| 32 | +] |
| 33 | +dynamic = ["version"] |
| 34 | + |
| 35 | +[project.urls] |
| 36 | +homepage = "https://www.pygmt.org" |
| 37 | +documentation = "https://www.pygmt.org" |
| 38 | +repository = "https://github.com/GenericMappingTools/pygmt" |
| 39 | +changelog = "https://www.pygmt.org/latest/changes.html" |
| 40 | + |
| 41 | +[tool.setuptools] |
| 42 | +platforms = ["Any"] |
| 43 | +include-package-data = true |
| 44 | + |
| 45 | +[tool.setuptools.packages.find] |
| 46 | +include = ["pygmt*"] |
| 47 | +exclude = ["doc"] |
| 48 | + |
| 49 | +[tool.setuptools.package-data] |
| 50 | +tests = ["data/*", "baseline/*"] |
| 51 | + |
5 | 52 | [tool.setuptools_scm] |
6 | 53 | local_scheme = "node-and-date" |
7 | 54 | fallback_version = "999.999.999+unknown" |
|
0 commit comments