preparing for pypi
This commit is contained in:
parent
11cef6c233
commit
201815a533
21
LICENSE
Normal file
21
LICENSE
Normal 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.
|
14
README.md
14
README.md
@ -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
|
||||
```
|
||||
|
12
setup.py
12
setup.py
@ -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},
|
||||
|
Loading…
Reference in New Issue
Block a user