-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.51 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
43
44
45
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Licensed under the terms of the MIT License
# (see LICENSE.txt for details)
# -----------------------------------------------------------------------------
"""Setup script for spyder-okvim."""
# %% Import
# Third party imports
from setuptools import find_packages, setup
# Local imports
from spyder_okvim import __version__
from spyder_okvim.spyder.config import CONF_SECTION
setup(
name=CONF_SECTION,
version=__version__,
author="ok97465",
author_email="[email protected]",
description="A plugin to enable vim keybindings to the spyder editor",
license="MIT license",
url="https://github.com/ok97465/spyder_okvim",
install_requires=[
"python>=3.9",
"spyder>=5.3.3, <6.0.0"
],
packages=find_packages(),
entry_points={
"spyder.plugins": ["spyder_okvim = spyder_okvim.spyder.plugin:OkVim"],
},
classifiers=[
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
],
)