-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (28 loc) · 1.09 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pyls-memestra",
version="0.0.16",
description="Memestra plugin for the Python Language Server",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/QuantStack/pyls-memestra",
author="marimeireles",
author_email="mariana@psychonautgirl.space",
packages=['pyls_memestra', "tests"],
install_requires=open("requirements.txt").read().splitlines(),
entry_points={"pylsp": ["pyls_memestra = pyls_memestra.plugin"]},
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)