-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.09 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "miracron"
description = "A cron rule generator for scheduled TV recording with mirakc/Mirakurun"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.9" # for Generic Alias Type https://docs.python.org/ja/3/library/stdtypes.html#types-genericalias
license = {text = "Unlicense"}
authors = [{name = "maeda577"}]
maintainers = [{name = "maeda577"}]
keywords = ["DTV"]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3",
]
urls = {Repository = "https://github.com/maeda577/miracron"}
dependencies = [
"pyyaml",
"pydantic",
]
dynamic = ["version"]
[project.scripts]
miracron = "miracron:start_miracron_cli"
[tool.setuptools]
packages = ["miracron"]
[tool.setuptools.dynamic]
version = {attr = "miracron.miracron.__version__"}