-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (28 loc) · 1014 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
32
import os
from setuptools import find_packages, setup
def read(*parts):
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, *parts), "r") as fp:
return fp.read()
setup(
name="pyls-flake8",
version="0.4.0",
description="A Flake8 plugin for the Python Language Server",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/emanspeaks/pyls-flake8",
license="MIT",
maintainer="Peter Justin",
maintainer_email="peter.justin@outlook.com",
author="Randy Eckman",
author_email="emanspeaks@gmail.com",
packages=find_packages(),
install_requires=["python-lsp-server", "flake8>=3.6.0"],
entry_points={"pylsp": ["pyls_flake8 = pyls_flake8.plugin"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)