-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
95 lines (84 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'virtualenv-pyenv'
description = 'A virtualenv Python discovery plugin for pyenv-installed interpreters'
readme = 'README.md'
license = {text = 'MIT'}
authors = [
{name = 'Dmitry Meyer', email = '[email protected]'},
]
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
keywords = ['virtualenv', 'pyenv']
requires-python = '>= 3.8'
dependencies = [
'virtualenv',
'pyenv-inspect >= 0.4, < 0.5',
]
dynamic = ['version']
[project.urls]
Homepage = 'https://github.com/un-def/virtualenv-pyenv'
Repository = 'https://github.com/un-def/virtualenv-pyenv.git'
Changelog = 'https://github.com/un-def/virtualenv-pyenv/releases'
Issues = 'https://github.com/un-def/virtualenv-pyenv/issues'
[project.entry-points.'virtualenv.discovery']
pyenv = '_virtualenv_pyenv.discovery:PyenvCompat'
pyenv-compat = '_virtualenv_pyenv.discovery:PyenvCompat'
pyenv-fallback = '_virtualenv_pyenv.discovery:PyenvFallback'
pyenv-strict = '_virtualenv_pyenv.discovery:PyenvStrict'
[tool.setuptools.dynamic]
version = {attr = '_virtualenv_pyenv.__version__'}
[tool.setuptools]
zip-safe = true
include-package-data = false
[tool.isort]
lines_after_imports = 2
multi_line_output = 5
include_trailing_comma = true
use_parentheses = true
known_first_party = ['_virtualenv_pyenv']
known_third_party = ['virtualenv', 'pyenv_inspect']
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = ['tests']
markers = ['discovery_class']
[tool.tox]
legacy_tox_ini = '''
[tox]
envlist =
py38
py39
py310
py311
py312
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}
'''