-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
29 lines (28 loc) · 904 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
from setuptools import setup
# The setup is currently only used for tests. See the README for installation
# instructions in Neovim.
setup(
name='semshi',
description='Semantic Highlighting for Python in Neovim',
packages=['semshi'],
author='numirias',
author_email='[email protected]',
version='0.1.0',
url='https://github.com/numirias/semshi',
license='MIT',
python_requires='>=3',
install_requires=[
'pytest>=3.3.2',
'pynvim>=0.3.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Text Editors',
],
)