Upload 1.5.0 version

Upload docs
This commit is contained in:
Teleport
2023-05-08 21:43:58 +03:00
parent 852a407ceb
commit 6b771f8925
22 changed files with 676 additions and 367 deletions

View File

@@ -1,29 +1,28 @@
from os import path
from setuptools import setup
from pyspw import __version__
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
description_md = f.read()
requirements = [
'requests==2.28.1',
'mojang==0.2.0'
]
requirements = open('requirements.txt', 'r').read().split('\n')
setup(
name='Py-SPW',
version='1.4.3',
version=__version__,
packages=['pyspw'],
url='https://github.com/teleport2/Py-SPW',
url='https://github.com/teleportx/Py-SPW',
license='MIT License',
author='Stepan Khozhempo',
author_email='stepan@m.khoz.ru',
author_email='stepan@khoz.ru',
description='Python library for spworlds API',
long_description=description_md,
long_description_content_type='text/markdown',
install_requires=requirements,
python_requires='>=3.10',
python_requires='>=3.7',
project_urls={
"Docs": "https://github.com/teleport2/Py-SPW/wiki",
"GitHub": "https://github.com/teleport2/Py-SPW"