-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (40 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
PROJECT = 'virtualenvwrapper'
# Change docs/sphinx/conf.py too!
VERSION = '3.5'
# Bootstrap installation of Distribute
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
try:
long_description = open('README.txt', 'rt').read()
except IOError:
long_description = ''
setup(
name = PROJECT,
version = VERSION,
description = 'Enhancements to virtualenv',
long_description = long_description,
author = 'Doug Hellmann',
author_email = '[email protected]',
url = 'http://www.doughellmann.com/projects/%s/' % PROJECT,
#download_url = 'http://www.doughellmann.com/downloads/%s-%s.tar.gz' % \
# (PROJECT, VERSION),
classifiers = [ 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms = ['Any'],
provides=['virtualenvwrapper_docs_es',
],
packages = [],
include_package_data = True,
zip_safe=False,
)