-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
45 lines (41 loc) · 1.18 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
from setuptools import setup, find_packages
import os
version = '0.7'
def read(*args):
path = os.path.join(*args)
try:
return open(path).read()
except:
pass
return ''
setup(name='oh-my-vim',
version=version,
description="Vim plugin manager and Vim related stuff",
long_description=read('README.rst'),
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development',
'Topic :: Text Editors',
],
keywords='vim pathogen',
author='Gael Pasgrimaud',
author_email='[email protected]',
url='https://github.com/gawel/oh-my-vim',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'argparse',
'ConfigObject',
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
oh-my-vim = ohmyvim.scripts:main
fpcli = ohmyvim.fpcli:main
""",
)