-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.54 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "spyder-watchlist"
description = "Watchlist plugin for the debugger in the Spyder IDE"
maintainers = [{name = "A. Reit", email = "[email protected]"}]
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.7" # required by Spyder
dependencies = [
"spyder>=6,<7",
"spyder-kernels>=3,<4",
]
keywords = [
"Spyder",
"watchlist",
"debugger",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Software Development :: Debuggers",
]
readme = "README.md"
[project.urls]
Source = "https://github.com/procitec/spyder-watchlist"
Changelog = "https://github.com/procitec/spyder-watchlist/blob/main/CHANGELOG.md"
[project.entry-points."spyder.plugins"]
watchlist = "spyder_watchlist.plugin:Watchlist"
[tool.flit.module]
name = "spyder_watchlist"
[tool.flit.sdist]
exclude = [".gitignore"]
[tool.isort]
line_length = 88 # black default
profile = "black"
[tool.pylint.messages_control]
disable = [
"invalid-name", # C0103: Attribute name "X" doesn't conform to snake_case naming style
"missing-function-docstring", # C0116: Missing function or method docstring
"missing-module-docstring", # C0114: Missing module docstring
"missing-class-docstring", # C0115: Missing class docstring
]