|
| 1 | +[build-system] |
| 2 | +requires = ["scikit-build-core", "cython", "numpy", "cython-cmake"] |
| 3 | +build-backend = "scikit_build_core.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "py-gd" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "python wrappers around libgd graphics lib" |
| 9 | +readme = "README.md" |
| 10 | +license = "CC0-1.0" |
| 11 | +license-files = ["LICENSE.txt"] |
| 12 | +requires-python = ">=3.10" |
| 13 | +authors = [ |
| 14 | + { name = "Christopher H. Barker", email = "chris.barker@noaa.gov" }, |
| 15 | +] |
| 16 | +keywords = [ |
| 17 | + "cython", |
| 18 | + "drawing", |
| 19 | + "graphics", |
| 20 | +] |
| 21 | +classifiers = [ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Programming Language :: Cython", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
| 27 | + "Programming Language :: Python :: Implementation :: CPython", |
| 28 | + "Topic :: Multimedia :: Graphics", |
| 29 | + "Topic :: Utilities", |
| 30 | +] |
| 31 | +dependencies = ["numpy"] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://github.com/NOAA-ORR-ERD/py_gd" |
| 35 | + |
| 36 | +[dependency-groups] |
| 37 | +test = ["pytest"] |
| 38 | +build = ["scikit-build-core", "cython", "numpy", "cython-cmake"] |
| 39 | +dev = [{ include-group = "test" }, { include-group = "build"}, "build"] |
| 40 | + |
| 41 | +[tool.scikit-build] |
| 42 | +build-dir = "build" |
| 43 | + |
| 44 | +[tool.scikit-build.metadata.version] |
| 45 | +provider = "scikit_build_core.metadata.regex" |
| 46 | +input = "py_gd/__init__.py" |
0 commit comments