-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "PyKDialog"
version = "0.0.1"
authors = [
{ name="Christian Tallner", email="[email protected]" },
]
description = "Fluent Python API to create KDialog commands."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["KDialog"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment :: K Desktop Environment (KDE)",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.1",
]
dev = [
"pytest",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.1",
"pytest-sugar>=0.9.7",
"pyment",
"sphinx"
]
[project.urls]
"Homepage" = "https://github.com/ChrTall/PyKDialog"
"Bug Tracker" = "https://github.com/ChrTall/PyKDialog/issues"
[tool.setuptools_scm]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["PyKDialog*"]
exclude = ["tests*", "integration_tests*"]