forked from davidmarble/virtualenvwrapper-win
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (58 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
PROJECT = 'virtualenvwrapper-win'
AUTHOR = 'davidmarble'
EMAIL = '[email protected]'
DESCRIPTION = ('Port of Doug Hellmann\'s virtualenvwrapper '
'to Windows batch scripts')
VERSION = '1.0.8'
PROJECT_URL = 'https://github.com/%s/%s/' % (AUTHOR, PROJECT)
from setuptools import setup
import os
import sys
long_description = ''
try:
long_description = open('README.rst', 'rt').read()
except IOError:
pass
setup(
name = PROJECT,
version = VERSION,
description = DESCRIPTION,
long_description = long_description,
author = AUTHOR,
author_email = EMAIL,
url = PROJECT_URL,
platforms = ['WIN32', 'WIN64', ],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Environment :: Console', ],
scripts = [
'scripts/add2virtualenv.bat',
'scripts/cd-.bat',
'scripts/cdproject.bat',
'scripts/cdsitepackages.bat',
'scripts/cdvirtualenv.bat',
'scripts/folder_delete.bat',
'scripts/lssitepackages.bat',
'scripts/lsvirtualenv.bat',
'scripts/mkvirtualenv.bat',
'scripts/pyassoc.bat',
'scripts/python.bat',
'scripts/rmvirtualenv.bat',
'scripts/setprojectdir.bat',
'scripts/toggleglobalsitepackages.bat',
'scripts/whereis.bat',
'scripts/workon.bat',
],
install_requires=['virtualenv', ],
zip_safe=False,
)