little changes

This commit is contained in:
Teleport
2022-07-15 00:51:41 +03:00
parent 2d0232d3b5
commit 5671ce5005
4 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
.. image:: https://img.shields.io/pypi/v/pyspw.svg
:target: https://pypi.org/project/pyspw/
:alt: PyPI version info
Py SPW
=======
Библиотека для работы с SPworlds API.
`Документация с примерами <https://github.com/teleport2/Py-SPW/wiki>`_
Установка
----
Библиотека написана на python 3.10.5.
.. code:: sh
pip install pyspapi

View File

@@ -1,8 +1,7 @@
from . import api
from . import errors
from . import payment_webserver
__all__ = ["Api", "payment_webserver", "errors"]
__all__ = ["Api", "errors"]
__version__ = 1.0

3
setup.cfg Normal file
View File

@@ -0,0 +1,3 @@
[egg_info]
tag_build =
tag_date = 0

View File

@@ -1,12 +1,12 @@
from setuptools import setup
setup(
name='Py-SPW',
name='pyspw',
version='1.0',
packages=['pyspw'],
url='',
url='https://github.com/teleport2/Py-SPW',
license='MIT License',
author='Stepan Khozhempo',
author_email='stepan@m.khoz.ru',
description=''
description='Library for spworlds API'
)