This repository was archived by the owner on Nov 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.44 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
[tool.poetry]
name = "QtVSCodeStyle"
version = "0.1.2"
description = "VS Code Style for PySide, PyQt."
authors = ["Yunosuke Ohsugi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/5yutan5/QtVSCodeStyle"
homepage = "https://github.com/5yutan5/QtVSCodeStyle"
packages = [{ include = "qtvscodestyle" }]
include = ["NOTICE.md"]
keywords = ["qt", "stylesheets", "vscode"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Environment :: X11 Applications :: Qt",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
black = "^21.10b0"
flake8 = "^4.0.1"
pyproject-flake8 = "^0.0.1-alpha.2"
pre-commit = "^2.15.0"
isort = "^5.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 119
max-complexity = 10
extend-ignore = "E203, W503"
per-file-ignores = ["qtvscodestyle/vscode/color_registry.py:F841"]
[tool.black]
line-length = 119
[tool.isort]
profile = "black"
line_length = 119