diff --git a/README.rst b/README.rst index e69de29..bc82590 100644 --- a/README.rst +++ b/README.rst @@ -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. + +`Документация с примерами `_ + + + +Установка +---- +Библиотека написана на python 3.10.5. + +.. code:: sh + + pip install pyspapi + + diff --git a/pyspw/__init__.py b/pyspw/__init__.py index 6e539be..7fa837f 100644 --- a/pyspw/__init__.py +++ b/pyspw/__init__.py @@ -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 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..7d99dd6 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[egg_info] +tag_build = +tag_date = 0 \ No newline at end of file diff --git a/setup.py b/setup.py index 6336a42..b12f016 100644 --- a/setup.py +++ b/setup.py @@ -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' )