typo pypi fix

This commit is contained in:
deesiigneer
2022-07-18 05:45:05 +03:00
parent 6bf342a9f1
commit f4623e9204
4 changed files with 23 additions and 21 deletions

View File

@@ -18,46 +18,44 @@
:alt: pyspapi documentation
pyspapi
=======
========
`API <https://github.com/sp-worlds/api-docs>`_ wrapper for SP servers written in Python.
Installation
==========
**Requires Python 3.7 or higher**
-------------
**Requires Python 3.9 or higher**
*Windows*
.. code:: sh
pip install pyspapi
*Linux*
*Linux/macOS*
.. code:: sh
sudo apt pip3 install pyspapi
Quick example
=========
--------------
Checking the balance
~~~~
.. code:: python
~~~~~~~~~~~~~~~~~~~~~
.. code:: py
import pyspapi
print(pyspapi.SPAPI(card_id='card_id', token='token').balance)
More examples can be found in the `examples <https://github.com/deesiigneer/pyspapi/tree/main/examples>`_
Links
=======
* `Discord server <https://discord.gg/VbyHaKRAaN>`_
* `pyspapi documentation <https://pyspapi.readthedocs.io/>`_
* `PyPi <https://pypi.org/project/pyspapi/>`_
* `API documentation for SP sites <https://github.com/sp-worlds/api-docs>`_
------
- `Discord server <https://discord.gg/VbyHaKRAaN>`_
- `pyspapi documentation <https://pyspapi.readthedocs.io/>`_
- `PyPi <https://pypi.org/project/pyspapi/>`_
- `API documentation for SP sites <https://github.com/sp-worlds/api-docs>`_

View File

@@ -1,3 +1,3 @@
from .api import *
__version__ = "2.0.0"
__version__ = "2.0.0a"

View File

@@ -29,9 +29,13 @@ setup(
name='pyspapi',
license='MIT',
author='deesiigneer',
author_email='xdeesiigneerx@gmail.com',
version=version,
url='https://github.com/deesiigneer/pyspapi',
project_urls={
"Documentation": "https://pyspapi.readthedocs.io/ru/latest/",
"GitHub": "https://github.com/deesiigneer/pyspapi",
"Discord": "https://discord.com/invite/VbyHaKRAaN"
},
description='API wrapper for SP servers written in Python',
long_description=readme,
long_description_content_type='text/x-rst',