-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (63 loc) · 1.51 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
67
68
69
70
71
72
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'virtualenv-asdf'
version = '0.1.0'
description = 'A virtualenv Python discovery plugin using asdf'
license = 'MIT'
authors = ['Scott Sharkey <[email protected]>']
readme = 'README.md'
homepage = 'https://github.com/lanshark/virtualenv-asdf'
repository = 'https://github.com/lanshark/virtualenv-asdf'
keywords = ['virtualenv', 'asdf']
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
packages = [{include = '_virtualenv_asdf', from = 'src'}]
[tool.poetry.plugins.'virtualenv.discovery']
asdf = '_virtualenv_asdf.discovery:ASDF'
[tool.poetry.dependencies]
python = '^3.7'
virtualenv = '*'
asdf-inspect = '~0.1'
[tool.isort]
lines_after_imports = 2
multi_line_output = 5
include_trailing_comma = true
use_parentheses = true
known_first_party = ['_virtualenv_asdf']
known_third_party = ['virtualenv', 'asdf_inspect']
[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
pytest-mock
commands = pytest {posargs}
[testenv:flake8]
skip_install = true
deps = flake8
commands = flake8 {posargs}
[testenv:isort]
skip_install = true
deps = isort
commands = isort {posargs:. -c}
'''