-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
45 lines (37 loc) · 1.03 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
import sys
from setuptools import setup, find_packages
_ver = sys.version_info
is_py2 = (_ver[0] == 2)
is_py3 = (_ver[0] == 3)
version = '0.3.0'
requires = [
'plac>=0.7.4',
'requests>=1.1.0',
]
if is_py2:
requires.append('backports.shutil_get_terminal_size')
setup(name='vimpyre',
version=version,
description="Vim Scripts Manager (use pathogen, git, and python!)",
long_description=open('README.rst').read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='vim scripts manager',
author='Daniel Lin',
author_email='[email protected]',
url='',
license='',
packages=find_packages(
exclude=[
'ez_setup',
'examples',
'tests',
'README.rst']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points={
'console_scripts': [
'vimpyre = vimpyre.console:main',
],
},
)