forked from numirias/semshi
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (30 loc) · 983 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
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.3.0.dev0',
url='https://github.com/numirias/semshi',
license='MIT',
python_requires='>=3.7',
install_requires=[
'pytest>=7.0',
'pytest-pudb',
'pynvim>=0.4.3',
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Text Editors',
],
)