2022-05-02 00:04:48 +02:00
|
|
|
[project]
|
|
|
|
name = "kodi-timekeeper"
|
|
|
|
description = "An approach to letting kids use a Kodi media center instance"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = [
|
|
|
|
{ name = "hygienic-books", email = "hygienic-books@tentic.net" }
|
|
|
|
]
|
|
|
|
dependencies = [
|
2022-05-02 02:40:08 +02:00
|
|
|
"certifi==2021.10.8",
|
|
|
|
# via requests
|
|
|
|
"charset-normalizer==2.0.12",
|
|
|
|
# via requests
|
|
|
|
"idna==3.3",
|
|
|
|
# via requests
|
|
|
|
"requests==2.27.1",
|
|
|
|
# via -r requirements.in
|
2022-05-02 02:40:53 +02:00
|
|
|
"urllib3==1.26.9"
|
2022-05-02 02:40:08 +02:00
|
|
|
# via requests
|
2022-05-02 00:04:48 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
2022-05-02 02:40:08 +02:00
|
|
|
"attrs==21.4.0",
|
|
|
|
# via pytest
|
|
|
|
"click==8.1.3",
|
|
|
|
# via
|
|
|
|
# click-default-group
|
|
|
|
# towncrier
|
|
|
|
"click-default-group==1.2.2",
|
|
|
|
# via towncrier
|
|
|
|
"incremental==21.3.0",
|
|
|
|
# via towncrier
|
|
|
|
"iniconfig==1.1.1",
|
|
|
|
# via pytest
|
|
|
|
"jinja2==3.1.2",
|
|
|
|
# via towncrier
|
|
|
|
"markupsafe==2.1.1",
|
|
|
|
# via jinja2
|
|
|
|
"packaging==21.3",
|
|
|
|
# via pytest
|
|
|
|
"pluggy==1.0.0",
|
|
|
|
# via pytest
|
|
|
|
"py==1.11.0",
|
|
|
|
# via pytest
|
|
|
|
"pyparsing==3.0.8",
|
|
|
|
# via packaging
|
|
|
|
"pytest==7.1.2",
|
|
|
|
# via -r requirements.in
|
|
|
|
"semver==2.13.0",
|
|
|
|
# via -r requirements.in
|
|
|
|
"tomli==2.0.1",
|
|
|
|
# via
|
|
|
|
# pytest
|
|
|
|
# towncrier
|
2022-05-02 02:40:53 +02:00
|
|
|
"towncrier==21.9.0"
|
2022-05-02 02:40:08 +02:00
|
|
|
# via -r requirements.in
|
2022-05-02 00:04:48 +02:00
|
|
|
]
|
|
|
|
|
2022-03-29 03:37:19 +02:00
|
|
|
[build-system]
|
2022-05-02 00:08:06 +02:00
|
|
|
requires = [
|
2022-05-02 02:40:53 +02:00
|
|
|
"setuptools==58.0.4",
|
|
|
|
"wheel==0.37.1"
|
2022-05-02 00:08:06 +02:00
|
|
|
]
|
2022-03-29 03:37:19 +02:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
2022-03-29 03:19:00 +02:00
|
|
|
[tool.semantic_release]
|
2022-05-02 00:08:47 +02:00
|
|
|
version_toml = "pyproject.toml:project.version"
|
2022-03-29 03:19:00 +02:00
|
|
|
major_on_zero = false
|
2022-03-29 03:37:19 +02:00
|
|
|
|
2022-03-29 03:19:00 +02:00
|
|
|
[tool.towncrier]
|
2022-05-01 04:20:52 +02:00
|
|
|
directory = "newsfragments"
|
2022-03-29 03:19:00 +02:00
|
|
|
package = "kodi-timekeeper"
|
|
|
|
package_dir = "src"
|
|
|
|
filename = "CHANGELOG.md"
|
2022-05-01 04:23:28 +02:00
|
|
|
type = [
|
2022-05-02 00:11:27 +02:00
|
|
|
{ name = "Features", directory = "feat", showcontent = true },
|
|
|
|
{ name = "Bug fixes", directory = "fix", showcontent = true },
|
|
|
|
{ name = "Project structure", directory = "build", showcontent = true },
|
2022-05-02 01:59:49 +02:00
|
|
|
{ name = "Refactor", directory = "refactor", showcontent = true },
|
2022-05-02 02:49:29 +02:00
|
|
|
{ name = "Test", directory = "test", showcontent = true },
|
|
|
|
{ name = "Documentation", directory = "docs", showcontent = true }
|
2022-05-01 04:23:28 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
# New format is in the works, not yet part of towncrier 21.9.0
|
|
|
|
# News topics from which we may want to choose:
|
|
|
|
# [tool.towncrier.fragment.build]
|
|
|
|
# [tool.towncrier.fragment.chore]
|
|
|
|
# [tool.towncrier.fragment.ci]
|
|
|
|
# [tool.towncrier.fragment.docs]
|
|
|
|
# [tool.towncrier.fragment.feat]
|
|
|
|
# [tool.towncrier.fragment.fix]
|
|
|
|
# [tool.towncrier.fragment.perf]
|
|
|
|
# [tool.towncrier.fragment.refactor]
|
|
|
|
# [tool.towncrier.fragment.revert]
|
|
|
|
# [tool.towncrier.fragment.style]
|
|
|
|
# [tool.towncrier.fragment.test]
|
|
|
|
# [tool.towncrier.fragment.deprecation]
|
|
|
|
# [tool.towncrier.fragment.remove]
|
|
|
|
# [tool.towncrier.fragment.trivial]
|
2022-05-02 01:03:49 +02:00
|
|
|
# [tool.towncrier.fragment.meta]
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
python_files = "test_*"
|
|
|
|
python_classes = "*Tests"
|
2022-05-02 01:38:46 +02:00
|
|
|
python_functions = "test_*"
|