-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dcrpcgen"
description = "Chatmail JSON-RPC client generator"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["deltachat", "bot"]
authors = [
{name = "adbenitez", email = "adb@merlinux.eu"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"Jinja2>=3.1.6,<4.0",
]
[project.urls]
Homepage = "https://github.com/chatmail/dcrpcgen"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"isort",
"prospector",
"setuptools",
"pytest",
]
[project.scripts]
dcrpcgen = "dcrpcgen.main:main"
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
version_file = "dcrpcgen/_version.py"
[tool.setuptools]
packages = ["dcrpcgen"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
skip_glob = ["*/_version.py"]
[tool.mypy]
ignore_missing_imports = "True"