-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 974 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "metadata_archivist"
version = "0.7"
requires-python = ">3.8"
authors = [
{ name="Jose Villamar", email="[email protected]" },
{ name="Matthias Kelbling", email="[email protected]" },
]
description = "A heterogeneous metadata file parsing and structuring framework"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.urls]
"Homepage" = "https://codebase.helmholtz.cloud/metamosim/metadata_archivist.git"
[project.optional-dependencies]
validation = [
"jsonschema",
]
examples = [
"pyyaml",
"jsonschema",
"f90nml"
]
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults