-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.16 KB
/
setup.py
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
print 'Note: without Setuptools installed you will have to use "python -m virtualenv ENV"'
import sys, os
version = '1.3.4'
f = open(os.path.join(os.path.dirname(__file__), 'docs', 'index.txt'))
long_description = f.read().strip()
f.close()
setup(name='virtualenv',
version=version,
description="Virtual Python Environment builder",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
keywords='setuptools deployment installation distutils',
author='Ian Bicking',
author_email='[email protected]',
url='http://pypi.python.org/pypi/virtualenv',
license='MIT',
py_modules=['virtualenv'],
## Hacks to get the package data installed:
packages=[''],
package_dir={'': '.'},
package_data={'': ['support-files/*-py%s.egg' % sys.version[:3]]},
zip_safe=False,
entry_points="""
[console_scripts]
virtualenv = virtualenv:main
""",
)