-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.33 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyQvd"
version = "2.2.1"
description = "Utility library for reading/writing Qlik View Data (QVD) files in Python."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE.md"}
authors = [
{name = "Constantin Müller", email = "info@mueller-constantin.de"},
]
keywords = ["qlik", "qvd", "qlik sense", "qlik view", "pandas"]
requires-python = ">=3.8"
dependencies = [
"tabulate"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8"
]
[project.urls]
Homepage = "https://github.com/MuellerConstantin/PyQvd"
Repository = "https://github.com/MuellerConstantin/PyQvd.git"
Issues = "https://github.com/MuellerConstantin/PyQvd/issues"
Documentation = "https://pyqvd.readthedocs.io"
Changelog = "https://github.com/MuellerConstantin/PyQvd/CHANGELOG.md"
[project.optional-dependencies]
pandas = ["pandas"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.pylint.main]
py-version = "3.8"
[tool.pylint.messages_control]
max-line-length = 120
[tool.pylint.report]
output-format = "colorized"