-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
121 lines (105 loc) · 3.1 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject
[tool.poetry]
name = "jmopenorders"
version = "0.2.9"
description = "a generator to generate infos for the affected persm ons"
authors = ["Jürgen Mülbert <[email protected]>"]
license = "EUPL-1.2"
readme = "README.rst"
homepage = "https://github.com/jmuelbert/jmopenorders"
repository = "https://github.com/jmuelbert/jmopenorders"
documentation = "https://jmopenorders.readthedocs.io"
packages = [
{ include = "jmopenorders", from = "src" }
]
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = ["jmopenorders", "excel", "convert" ]
# Pypi classifiers: https://pypi.org/classifiers/
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Office/Business",
]
[tool.poetry.urls]
Changelog = "https://github.com/jmuelbert/jmopenorders/releases"
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.0.1"
openpyxl = "^3.0.4"
python-dotenv = ">=0.19,<0.22"
PyYAML = ">=5.4.1,<7.0.0"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "^7.2"}
pytest = "^7.4.4"
safety = "^3.2.11"
mypy = "^1.4"
typeguard = "^2.13.3"
xdoctest = {extras = ["colors"], version = "^1.1.6"}
sphinx = "^4.3.2"
sphinx-autobuild = "^2021.3.14"
pre-commit = "^2.21.0"
black = "^23.3"
flake8 = "^5.0.4"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^23.3.12"
flake8-docstrings = "^1.7.0"
flake8-rst-docstrings = "^0.3.0"
pep8-naming = "^0.14.0"
darglint = "^1.8.1"
reorder-python-imports = "^3.10.0"
pre-commit-hooks = "^4.4.0"
faker = "^18.13.0"
sphinx-click = "^4.4.0"
Pygments = "^2.17.2"
openpyxl-stubs = "^0.1.25"
types-PyYAML = "^6.0.12"
types-setuptools = "^69.0.0"
types-toml = "^0.10.8"
typing-extensions = "^4.7.1"
pydocstyle = "^6.3.0"
pyupgrade = "^3.3.2"
furo = ">2021.11.12"
[tool.pyright]
include = ["src"]
exclude = ["**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs"
]
reportMissingImports = true
reportMissingTypeStubs = false
[tool.poetry.scripts]
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
jmopenorders = "jmopenorders.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["jmopenorders"]
[tool.coverage.report]
show_missing = true
fail_under = 33
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
module = "openpyxl.worksheet.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"