-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
55 lines (50 loc) · 1.09 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
52
53
54
55
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "dx"
author = "nteract"
author-email = "[email protected]"
home-page = "https://github.com/nteract/dx"
description-file = "README.md"
requires = [
"datamodel-code-generator",
"dataclasses-json",
"jsonschema",
"jupyter",
"marshmallow",
"nteract_on_jupyter",
"pandas",
"pydantic"
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
dist-name = "dx"
[tool.flit.metadata.requires-extra]
dev = [
"black",
"flit",
"isort",
"pre-commit",
"pytest",
"tox"
]
test = [
"pytest >=2.7.3",
"pytest-cov",
]
doc = ["sphinx"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/foo.py # exclude a file named foo.py in the root of the project (in addition to the defaults)
'''
[tool.isort]
profile = "black"
multi_line_output = 3