-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 935 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "flake8-profiles"
version = "0.2.0"
description = "profiles for flake8"
license = { "text" = "MIT License" }
authors = [
{ "name" = "Leif Walsh", "email" = "leif@twosigma.com" }
]
dependencies = [
"flake8"
]
[project.urls]
"Source Code" = "https://github.com/twosigma/flake8-profiles"
Homepage = "https://github.com/twosigma/flake8-profiles"
Issues = "https://github.com/twosigma/flake8-profiles/issues"
[project.optional-dependencies]
dev = [
"flake8-docstrings",
"pip-tools",
"pytest",
"sphinx",
"sphinx_rtd_theme",
# Needed to make pip-compile generate pip-installable requirements.txt
"exceptiongroup",
"importlib-metadata",
"tomli",
]
[project.entry-points]
"flake8.report" = { "CNF101" = "flake8_profiles:ProfilePlugin" }
[tool.pip-tools]
allow-unsafe = true
generate-hashes = true