preparing for pypi

This commit is contained in:
yeger 2018-12-02 16:27:38 -05:00
parent 11cef6c233
commit 201815a533
3 changed files with 44 additions and 3 deletions

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 Avi Yeger
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -1,9 +1,21 @@
# pylspclient
The library implements a LSP client in Python.
[LSP](https://microsoft.github.io/language-server-protocol/) client implementation in Python.
[![image](https://img.shields.io/pypi/v/pylspclient.svg)](https://pypi.org/project/pylspclient/)
[![Build Status](https://travis-ci.org/yeger00/pylspclient.svg?branch=master)](https://travis-ci.org/yeger00/pylspclient)
# Installation
```
pip install pylspclient
```
# Run the tests
```
tox
```
or
```
python setup.py test
```

View File

@ -4,7 +4,8 @@ import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
with open("README.md", "r") as fh:
long_description = fh.read()
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
@ -20,7 +21,14 @@ class PyTest(TestCommand):
sys.exit(errno)
setup(
name="pylspclient",
name="pylspclient",
version="0.0.1",
author="Avi Yeger",
author_email="yeger00@gmail.com",
description="LSP client implementation in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yeger00/pylspclient",
packages=find_packages(),
tests_require=["pytest", "pytest_mock"],
cmdclass={"test": PyTest},