-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (72 loc) · 1.78 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
80
81
82
83
[tool.poetry]
name = "vcron"
version = "0.2.0"
description = ""
authors = ["laixintao <laixintaoo@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/laixintao/vcron"
license = "GPLv3"
keywords = ["python3"]
packages = [{include = "vcron"}]
include = [
{ path = "docs", format = "sdist" },
{ path = "tests", format = "sdist" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.8.1"
textual = "^0.45.0"
click = "^8.1.7"
cron-descriptor = "^1.4.0"
croniter = "^2.0.1"
[tool.poetry.scripts]
vcron = 'vcron.main:main'
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
ipdb = "^0.13.13"
flake8 = "^6.1.0"
pytest-cov = "^2.12.1"
bumpversion = "^0.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/laixintao/vcron/issues"
[tool.black]
line-length = 79
target-version = ['py37']
preview = true
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
.*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.run]
omit = [
]
[tool.coverage.report]
exclude_lines = [
'pragma: no cover',
'if TYPE_CHECKING:',
'if __name__ == "__main__":',
'@overload',
'__rich_repr__',
'@abstractmethod',
'NotImplementedError',
]
# ---