Skip to content

Commit 252c0d3

Browse files
committed
chore(release): release version 0.1.0
1 parent 9887127 commit 252c0d3

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55

66
*.py[co]
77
*.whl
8+
9+
/dist/

pyproject.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,21 @@ build-backend = 'poetry.core.masonry.api'
44

55
[tool.poetry]
66
name = 'virtualenv-pyenv'
7-
version = '0.1.0.dev0'
8-
description = ''
7+
version = '0.1.0'
8+
description = 'A virtualenv Python discovery plugin using pyenv'
9+
license = 'MIT'
910
authors = ['un.def <[email protected]>']
11+
readme = 'README.md'
12+
homepage = 'https://github.com/un-def/virtualenv-pyenv'
13+
repository = 'https://github.com/un-def/virtualenv-pyenv'
14+
keywords = ['virtualenv', 'pyenv']
15+
classifiers = [
16+
'Development Status :: 4 - Beta',
17+
'Intended Audience :: Developers',
18+
'Topic :: Software Development :: Libraries',
19+
'Topic :: Software Development :: Testing',
20+
'Topic :: Utilities',
21+
]
1022
packages = [{include = '_virtualenv_pyenv', from = 'src'}]
1123

1224
[tool.poetry.plugins.'virtualenv.discovery']

src/_virtualenv_pyenv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0.dev0'
1+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)