-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.3 KB
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
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "precice-adapter-schema"
dynamic = [ "version" ]
description = "Validation utility for preCICE adapter configurations"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "preCICE developers", email = "info@precice.org"}
]
maintainers = [
{ name = "Felix Neubauer", email = "felix.neubauer@ipvs.uni-stuttgart.de" }
]
license= "MIT"
license-files = [ "LICENSE" ]
keywords = ["preCICE", "adapter", "validation", "schema"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"jsonschema>=4.0.0",
"importlib-resources>=5.0.0; python_version < '3.9'",
]
[project.urls]
Homepage = "https://precice.org"
Documentation = "https://precice.org/community-guidelines-adapters"
Repository = "https://github.com/precice/adapter-schema.git"
"Bug Tracker" = "https://github.com/precice/adapter-schema/issues"
[tool.setuptools]
packages = ["preciceadapterschema"]
[tool.setuptools.package-data]
preciceadapterschema = ["*.json"]
[tool.setuptools-git-versioning]
enabled = true