-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
44 lines (38 loc) · 1.33 KB
/
setup.cfg
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
[metadata]
name = venv-management
version = attr: venv_management.version.__version__
description = A Python package for programmatic creation of Python virtual environments
long_description = file: README.rst, LICENSE.txt
long_description_content_type = text/x-rst
url = https://github.com/sixty-north/venv-management
author = Sixty North AS
author_email: [email protected]
keywords = virtual-environment
license = MIT License
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Scientific/Engineering
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
zip_safe = True
include_package_data = False
package_dir =
=src
packages = find:
install_requires = stevedore
[options.extras_require]
dev = bumpversion
doc = sphinx ; sphinx_rtd_theme ; better_apidoc ; six
test = pytest
[options.packages.find]
where = src
[options.entry_points]
venv_management.driver =
venv = venv_management.ext.drivers.venv:Driver
virtualenvwrapper = venv_management.ext.drivers.virtualenvwrapper:Driver
virtualenv-sh = venv_management.ext.drivers.virtualenv_sh:Driver
pyenv-virtualenv = venv_management.ext.drivers.pyenv_virtualenv:Driver