-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.12 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
47
48
49
50
51
[tool]
[tool.poetry]
name = "case-conversion"
version = "3.0.0"
description = "Convert between different types of cases (unicode supported)"
license = "MIT"
authors = ["Alejandro Frias <joker454@gmail.com>"]
keywords = ["case", "convert", "conversion", "camel", "pascal", "snake", "kebab", "spinal", "unicode"]
repository = "https://github.com/AlejandroFrias/case-conversion"
readme = "README.md"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/AlejandroFrias/case-conversion/issues"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
# linting
flake8 = "*"
flake8-docstrings = "^1.5.0"
darglint = "^1.1.3"
# formatting
black = "19.10b0"
blacken-docs = "*"
isort = "*"
# testing
parameterized = "^0.7.1"
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
pytest-sugar = "^0.9.2"
mypy = "^0.761"
[tool.isort]
line_length = 88
combine_star = true
# interoperability with black
include_trailing_comma = true
multi_line_output = 3
known_third_party = []
[tool.black]
line-length = 88
target_version = ['py36']
[flake8]
ignore = ",D100,E203,W503,"
exclude = ",.git, .venv, lib/client, __pycache__,"
max-line-length = 88