forked from abn/cafeteria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.2 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
src_paths = ["cafeteria", "test"]
known_first_party = "cafeteria"
[tool.poetry]
name = "cafeteria"
version = "0.20.1-alpha.0"
repository = "https://github.com/abn/cafeteria"
description = "Cafeteria: A convenience package providing various building blocks enabling pythonic patterns."
authors = [
"Arun Babu Neelicattu <[email protected]>",
"Josha Inglis <[email protected]>",
"Betsy Alpert <[email protected]>"
]
license = "APLv2"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
keywords = []
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.6"
PyYAML = ">=3.13,<6.0"
[tool.poetry.dev-dependencies]
pre-commit = {version = "^2.7", python = ">=3.6.1"}
flake8 = "^3.8"
coverage = "^5.2"
black = { version = "^21.5b0", allow-prereleases = true, python = ">=3.6.2,<4.0" }
tox = "^3.20"
pytest = "^6.0"
pytest-cov = "^2.7"