-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 789 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "coffeematon"
dynamic = ["version", "readme", "dependencies"]
license = { text = "Apache-2.0 license" }
requires-python = ">=3.7"
[tool.setuptools]
license-files = ['LICEN[CS]E*', 'COPYING*', 'NOTICE*', 'AUTHORS*']
[project.scripts]
coffeematon = "coffeematon.__main__:main"
[tool.setuptools.dynamic]
readme = { file = ["README.md"] }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools_scm]
[tool.mypy]
files = "src"
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
no_implicit_optional = true
no_implicit_reexport = false
strict_equality = true
warn_redundant_casts = true
warn_unused_ignores = true
ignore_missing_imports = true