-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.01 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
[tool.poetry]
name = "flake8-cgx"
version = "0.1.0"
description = "Flake8 plugin for cgx (Collagraph single file component) files"
authors = ["Berend Klein Haneveld <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Framework :: Flake8",
]
[tool.poetry.dependencies]
python = ">=3.9"
flake8 = ">=4.0.0"
collagraph = ">=0.4.1"
[tool.poetry.dev-dependencies]
black = "*"
flake8-black = "*"
flake8-bugbear = "*"
flake8-import-order = "*"
pytest = "*"
twine = { version = "*", python = ">=3.9,<4.0.0" }
[tool.poetry.plugins."flake8.extension"]
"CGX" = "flake8_cgx:CGXTreeChecker"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"