-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (70 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
83 lines (70 loc) · 2.43 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
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
[build-system]
requires = ["setuptools_scm[toml] >= 6.2", "setuptools-generate"]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "repl-python-wakatime"
description = "Python REPL plugin for automatic time tracking and metrics generated from your programming activity"
authors = [{ name = "Wu Zhenyu", email = "[email protected]" }]
readme = "README.md"
# Self
requires-python = ">= 3.11"
keywords = ["wakatime", "plugin", "python", "ipython", "ptpython"]
license = { text = "GPL v3" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest-cov"]
codestats = ["aiohttp", "keyring"]
ipython = ["ipython"]
ptpython = ["ptpython"]
ptipython = ["ptpython[ptipython]"]
[project.urls]
Homepage = "https://repl-python-wakatime.readthedocs.io"
Download = "https://github.com/wakatime/repl-python-wakatime/releases"
"Bug Report" = "https://github.com/wakatime/repl-python-wakatime/issues"
Source = "https://github.com/wakatime/repl-python-wakatime"
[tool.setuptools.package-data]
repl_python_wakatime = ["py.typed", "assets/*"]
[tool.setuptools_scm]
write_to = "src/repl_python_wakatime/_version.py"
[tool.setuptools-generate]
write-to = "src/repl_python_wakatime/_metainfo.py"
[tool.mdformat]
number = true
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
profile = "black"
# https://github.com/PyCQA/pydocstyle/issues/418
[tool.pydocstyle]
add_ignore = "D205, D400"
[tool.doq]
template_path = "templates"
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
"\\s*import tomli as tomllib",
]
[tool.bandit.assert_used]
skips = ["*_test.py", "*/test_*.py"]