-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
41 lines (38 loc) · 1.01 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
[metadata]
name = virtenv
version = 0.3.1
description = Create a virtual environment with venv or virtualenv
url = https://github.com/sarugaku/virtenv
author = Tzu-ping Chung
author_email = [email protected]
long_description = file: README.rst
license = ISC License
keywords =
venv
virtualenv
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
zip_safe = false
python_requires = >=2.7,!=3.0,!=3.1,!=3.2,!=3.3
install_requires =
pythonfinder
virtualenv
py_modules =
virtenv
virtenv_cli
[options.entry_points]
console_scripts =
virtenv = virtenv_cli:main
[bdist_wheel]
universal = 1