-
Notifications
You must be signed in to change notification settings - Fork 163
/
setup.py
31 lines (28 loc) · 866 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import pyvim
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
long_description = f.read()
setup(
name='pyvim',
author='Jonathan Slenders',
version=pyvim.__version__,
license='BSD License',
url='https://github.com/jonathanslenders/pyvim',
description='Pure Python Vi Implementation',
long_description=long_description,
packages=find_packages('.'),
install_requires = [
'prompt_toolkit>=2.0.0,<3.1.0',
'six',
'pyflakes', # For Python error reporting.
'pygments', # For the syntax highlighting.
'docopt', # For command line arguments.
],
entry_points={
'console_scripts': [
'pyvim = pyvim.entry_points.run_pyvim:run',
]
},
)