-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
79 lines (69 loc) · 2.23 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Timecard-App"
version = "3.0.0"
description = "Track time beautifully."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{name = "Jason C. McDonald", email = "[email protected]"}
]
maintainers = [
{name = "Jason C. McDonald", email = "[email protected]"}
]
keywords = ["time", "tracking", "office", "clock", "tool", "utility"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Topic :: Office/Business",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"appdirs >= 1.4.4",
"PySide6 >= 6.5.0",
]
requires-python = ">=3.6, <4"
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Homepage = "https://codemouse92.github.io/Timecard/"
Repository = "https://github.com/codemouse92/timecard"
Issues = "https://github.com/codemouse92/timecard/issues"
Funding = "https://github.com/sponsors/CodeMouse92"
[project.gui-scripts]
Timecard-App = "timecard.__main__:main"
[tool.bandit]
targets = ["src/"]
skips = ["B311"]
[tool.black]
line-length = 80
include = '^/(src|tests)/.+\.pyi?$'
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.0.0"
version_files = [
"pyproject.toml:version",
"src/timecard/interface/app.py:VERSION",
"src/timecard/resources/about.txt:TIMECARD v"
]
tag_format = "v$major.$minor.$patch$prerelease"
bump_message = "bump: update version and changelog (automatic commit)"
[tool.isort]
profile = "black"
line_length = "79"
src_paths = ["src", "tests"]
extend_skip_glob = ["*venv*/*", "docs/*", "share/*"]