forked from prompt-toolkit/pyvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.19 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
#!/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()
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Editors",
]
setup(
name="pyvim",
author="Jonathan Slenders",
maintainer="Hajime Nakagami",
maintainer_email="[email protected]",
version=pyvim.__version__,
license="BSD License",
url="https://github.com/nakagami/pyvim",
classifiers=classifiers,
description="Pure Python Vi Implementation",
long_description=long_description,
packages=find_packages("."),
install_requires=[
"prompt_toolkit==3.0.48",
"pyflakes", # For Python error reporting.
"jedi", # For Python autocompletion
"pygments", # For the syntax highlighting.
"docopt", # For command line arguments.
],
entry_points={
"console_scripts": [
"pyvim = pyvim.entry_points.run_pyvim:run",
]
},
)