-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
42 lines (38 loc) · 1.04 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
[tool.poetry]
name = "flake8-pie"
version = "0.16.0"
description = "A flake8 extension that implements misc. lints"
repository = "https://github.com/sbdchd/flake8-pie"
authors = ["Steve Dignam <steve@dignam.xyz>"]
license = "BSD-2-Clause"
readme = "README.md"
keywords = ["flake8", "lint"]
classifiers=[
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.dependencies]
python = ">=3.7"
typing_extensions = "*"
[tool.poetry.dev-dependencies]
black = "^18.3-alpha.0"
flake8 = "^3.6"
setuptools = "^40.6"
wheel = "^0.32.3"
twine = "^1.12"
pytest-watch = "^4.2"
pytest = "^4.0"
ipython = "^7.2"
astpretty = "^2.1"
isort = "^4.3"
mypy = "^0.971"
[tool.poetry.plugins]
[tool.poetry.plugins."flake8.extension"]
PIE = "flake8_pie:Flake8PieCheck"
[build-system]
requires = ["poetry>=0.12", "setuptools"]
build-backend = "poetry.masonry.api"