This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (66 loc) · 1.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "stand013"
version = "0.1.0"
description = "STAND13 file format parsing, writing, and validation."
authors = ["Stein Magnus Jodal <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kolonialno/python-stand013"
repository = "https://github.com/kolonialno/python-stand013"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = {version = ">=1.6,<5.0", python = "<3.8"}
lxml = "^4.6.3"
typer = ">=0.3.2,<0.8.0"
xmlschema = ">=1.6.4,<3.0.0"
[tool.poetry.dev-dependencies]
black = "^22.1"
flake8 = "^5.0.4"
flake8-annotations = "^2.6.2"
flake8-black = "^0.3.2"
flake8-bugbear = "^22.1.11"
flake8-isort = "^5.0.0"
isort = "^5.8.0"
mypy = "^0.990"
nox = "^2022.1.7"
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
[tool.poetry.scripts]
stand013 = "stand013.cli:app"
[tool.black]
target-version = ["py37"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.7"
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = "stand013.*"
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"importlib_metadata.*",
"lxml.*",
"xmlschema.*",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"