-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
56 lines (48 loc) · 1.44 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
56
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "sidekick"
author = "Fábio Macêdo Mendes"
author-email = "[email protected]"
home-page = "http://github.com/fabiommendes/sidekick/"
requires-python = ">=3.6"
description-file = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
]
requires = [ "toolz >= 0.10.0", "decorator" ]
[tool.flit.metadata.requires-extra]
test = [ "pytest", "pytest-cov", "mock", "pytest-doctest-plus", "hypothesis" ]
doc = [ "sphinx", "sphinx_rtd_theme" ]
dev = [ "flake8", "black", "readme_renderer" ]
hypothesis = [ "hypothesis" ]
app-cfg = [ "function-framework", "flask", "json-rpc" ]
[tool.flit.metadata.urls]
Documentation = "https://sidekick.readthedocs.io/en/latest/"
[tool.black]
line-length = 88
target_version = ['py36']
include = 'sidekick|tests'
exclude = '''
(
/(
_?build # exclude a few common directories in the
| dist # root of the project
| .*__pycache__.*
| htmlcov
| \.?venv
| \.(eggs|git|tox|idea|vscode)
| \.(pyc|html|iml)$
)/
)
'''