-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 883 Bytes
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
[tool.black]
line-length = 88
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "pyfrozen"
version = "0.3.0-alpha.0"
description = "Set of collections with ability to freeze their items"
authors = [
"Nikita Grishko <gr1n@protonmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Gr1N/pyfrozen"
repository = "https://github.com/Gr1N/pyfrozen"
keywords = ["collections", "frozen", "freeze"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
black = { version = "*", allows-prereleases = true }
flake8 = "*"
flake8-bugbear = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
tox = "^3.0.0"