-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (52 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
65 lines (52 loc) · 1.02 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "CSV_Parser"
version = "0.0.1"
description = "A csv parsing tool."
authors = [
"Joy Timmermans",
"Nikki Bruls",
"Stijn Jacobs",
"Karel Sajdak",
"Wiktor Kosinski"
]
license = "MIT"
readme = "README.md"
python = "^3.8"
classifiers = [
"Topic :: Software Development"
]
# Requirements
[dependencies]
[dev-dependencies]
black = { version = "^18.3-alpha.0", python = "^3.8" }
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3"
]
build-backend = "setuptools.build_meta"
[flake8]
ignore = "E501"
max-complexity = 10
[tool.black]
line-length = 120
target_version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''