-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (58 loc) · 1.37 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
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'asdf-inspect'
version = '0.1.0'
description = 'An auxiliary library for the virtualenv-asdf and tox-asdf-redux plugins'
license = 'MIT'
authors = ['Scott Sharkey <[email protected]>']
readme = 'README.md'
homepage = 'https://github.com/lanshark/asdf-inspect'
repository = 'https://github.com/lanshark/asdf-inspect'
keywords = ['asdf']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
packages = [{include = 'asdf_inspect', from = 'src'}]
[tool.poetry.dependencies]
python = '^3.7'
[tool.isort]
lines_after_imports = 2
multi_line_output = 5
include_trailing_comma = true
use_parentheses = true
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'TESTS', 'LOCALFOLDER']
known_first_party = ['asdf_inspect']
known_tests = ['tests']
[tool.pytest.ini_options]
minversion = '7.0'
testpaths = ['tests']
[tool.tox]
legacy_tox_ini = '''
[tox]
envlist =
py37
py38
py39
py310
py311
flake8
isort
isolated_build = true
[testenv]
deps =
pytest >= 7.0
commands = pytest {posargs}
[testenv:flake8]
skip_install = true
deps = flake8
commands = flake8 {posargs}
[testenv:isort]
skip_install = true
deps = isort
commands = isort {posargs:. -c}
'''