generated from os-climate/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (34 loc) · 926 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[tool.pdm]
package-dir = "src"
[project]
name = "osc-physrisk-metadata"
description = "OS-Climate Python Project"
readme = "README.rst"
authors = [
{name = "github-actions[bot]", email = "41898282+github-actions[bot]@users.noreply.github.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
dependencies = [
"importlib-metadata; python_version<\"3.8\"",
]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/pyscaffold/pyscaffold/"
Documentation = "https://pyscaffold.org/"
[project.optional-dependencies]
testing = [
"pytest",
"pytest-cov",
"setuptools",
]