-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "py9pfactotum"
authors = [
{name = "Daniel Moch", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/djmoch/py9pfactotum"
[project.optional-dependencies]
dev = [
"flake8",
"flit",
"keyring",
"mypy",
]
[project.entry-points."keyring.backends"]
factotum = "py9pfactotum.keyring"
[tool.mypy]
exclude = "/_vendor/"
[[tool.mypy.overrides]]
module = [
"py9pfactotum._vendor.py9p.py9p",
"py9pfactotum._vendor.py9p.utils",
]
follow_imports = "silent"
[tool.yapf]
based_on_style = "pep8"
USE_TABS = false