-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 747 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 747 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
author = "Chris Brake"
author-email = "chris.brake@gmail.com"
description-file="README.md"
home-page="https://github.com/chrisbrake/PythonSandbox"
module = "debugify"
requires = [
"aiohttp", "behave", "bottle", "cerberus", "connexion", "falcon", "gunicorn", "hypothesis", "mock",
"nuitka", "pbr","requests", "responder", "six", "sqlalchemy", "tinydb", "trio", "uwsgi"
]
[tool.flit.metadata.requires-extra]
test = [ "flake8", "mock", "pytest", "pytest-cov", ]
doc = ["sphinx"]
[tool.flit.scripts]
helloDebug = "debugify:hw"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py3
[testenv]
deps = pytest
commands = pytest
"""