-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 851 Bytes
/
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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "prybar"
home-page = "https://github.com/h4l/prybar"
author = "Hal Blackburn"
author-email = "[email protected]"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only"
]
requires-python = "~=3.6"
description-file = "README.rst"
[tool.flit.metadata.urls]
Documentation = "https://prybar.readthedocs.io"
[tool.flit.metadata.requires-extra]
dev = [
"flake8",
]
test = [
"pytest",
"pytest-cov",
]
doc = [
"sphinx"
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = lint,py36,py37
skip_missing_interpreters = true
isolated_build = true
[testenv]
deps =
extras = test
commands = pytest --doctest-modules --doctest-glob '*.rst'
[testenv:lint]
deps =
extras = dev
commands = flake8
"""