-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (76 loc) · 1.58 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
84
85
### pep518
[build-system]
requires = ["flit_core >=3.7.1,<4"]
build-backend = "flit_core.buildapi"
### pep518
### pep621
[project]
name = "doit-watch"
authors = [
{name = "Eduardo Naufel Schettino", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dynamic = ["version", "description"]
dependencies = [
"doit >=0.36",
"watchfiles >=0.13",
]
license = {file = "LICENSE"}
[project.entry-points."doit.COMMAND"]
watch = "doit_watch:Watch"
[project.urls]
Source = "https://github.com/pydoit/doit-watch"
"Bug Tracker" = "https://github.com/pydoit/doit-watch/issues"
[project.optional-dependencies]
test = [
"pytest >=7",
"pytest-cov",
]
lint = [
"black",
"mypy==0.942",
"pyflakes",
"lxml",
]
build = [
"flit",
]
ci = [
"codecov",
]
### pep621
### flit legacy
[tool.flit.module]
name = "doit_watch"
[tool.flit.sdist]
include = ["tests/"]
### flit legacy
### doit
[tool.doit]
backend = "sqlite3"
default_tasks = ["setup", "fix", "check", "test", "build"]
par_type = "thread"
verbosity = 2
### doit
### mypy
[tool.mypy]
python_version = "3.8"
warn_unused_configs = true
cache_dir = "build/.mypy_cache"
[[tool.mypy.overrides]]
module = [
"doit",
"doit.*",
]
ignore_missing_imports = true
### mypy