-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
93 lines (85 loc) · 2.26 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
[tool.black]
line-length = 120
include = '\.pyi?$'
target-version = [
"py38",
"py39",
"py310",
"py311"
]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| build
| dist
)/
'''
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"-rA"
]
testpaths = [
"tests",
]
[tool.poetry]
name = "cutplace"
version = "0.9.2"
description = "validate data stored in CSV, PRN, ODS or Excel files"
readme = "README.rst"
authors = ["Thomas Aglassinger <[email protected]>"]
license = "LGPL-3.0-only"
homepage = "https://github.com/roskakori/cutplace"
repository = "https://github.com/roskakori/cutplace.git"
documentation = "https://cutplace.readthedocs.io"
keywords = ["check", "csv", "excel", "ods", "validate"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Documentation",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
packages = [
{ include = "cutplace" },
]
[tool.poetry.dependencies]
python = ">=3.8, <4"
xlrd = "^1.2"
XlsxWriter = "^3"
[tool.poetry.dev-dependencies]
wheel = "^0.41"
coverage = "^6" # coveralls requires <7 for now
Sphinx = "^4.3.2"
pytest = "^7.2.0"
coveralls = "^3.3.1"
pep8-naming = "^0.13.3"
pytest-cov = "^4.0.0"
pre-commit = "^3"
pur = "^7.0.0"
[tool.poetry.scripts]
cutplace = "cutplace.applications:main_for_script"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/roskakori/cutplace/issues"
"Changes" = "https://cutplace.readthedocs.io/en/latest/changes.html"
[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "cutplace,scripts"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"