forked from jmcantrell/virtualenvwrapper.github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·52 lines (39 loc) · 1.26 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
#!/usr/bin/env python
from setuptools import setup
PROJECT = 'virtualenvwrapper.github'
VERSION = '0.1.3'
setup(
name=PROJECT,
version=VERSION,
description='Plugin for virtualenvwrapper to automatically create projects based on github repositories.',
author='Jeremy Cantrell',
author_email='[email protected]',
url = 'http://github.com/jmcantrell/%s/' % PROJECT,
download_url='http://github.com/jmcantrell/%s/tarball/%s' % (PROJECT, VERSION),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=[
'Any',
],
namespace_packages=[
'virtualenvwrapper',
],
packages=[
'virtualenvwrapper',
],
install_requires=[
'virtualenv',
'virtualenvwrapper>=2.9',
],
entry_points={
'virtualenvwrapper.project.template': [
'github = virtualenvwrapper.github:template',
]
},
zip_safe=False,
)