-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (55 loc) · 1.37 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "metadata_backend"
dynamic = ["version", "dependencies"]
description = "metadata_backend"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT License"}
authors = [
{ name = "CSC Developers" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
[project.optional-dependencies]
test = [
"coverage==7.6.8",
"pytest==8.3.4",
"pytest-cov==5.0.0",
"pytest-xdist==3.6.1",
"tox==4.23.2",
"setuptools==72.2.0",
]
docs = [
"sphinx >= 1.4",
"sphinx_rtd_theme==3.0.2",
]
[tool.black]
line-length = 120
target-version = ['py312']
[tool.isort]
atomic = true
profile = "black"
line_length = 120
py_version=312
[project.scripts]
metadata_submitter = "metadata_backend.server:main"
[project.urls]
Source = "https://github.com/CSCfi/metadata_submitter"
[tool.hatch.version]
path = "metadata_backend/__init__.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.mypy]
strict = true
ignore_missing_imports = true
namespace_packages = false
strict_optional = false