forked from prompt-toolkit/pyvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 859 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import pyvim
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read()
setup(
name='pyvim',
author='Jonathan Slenders',
version=pyvim.__version__,
license='LICENSE',
url='https://github.com/jonathanslenders/pyvim',
description='Pure Pyton Vi Implementation',
long_description=long_description,
packages=find_packages('.'),
install_requires = [
'prompt-toolkit==0.56',
'ptpython==0.27', # For the Python completion (with Jedi.)
'pyflakes', # For Python error reporting.
'docopt', # For command line arguments.
],
entry_points={
'console_scripts': [
'pyvim = pyvim.entry_points.run_pyvim:run',
]
},
)