Release 1.0

small fixes
This commit is contained in:
Teleport
2022-07-15 14:17:48 +03:00
parent 5671ce5005
commit d6d310f7e2
5 changed files with 55 additions and 34 deletions

View File

@@ -1,12 +1,22 @@
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
description_md = f.read()
requires = ['requests==2.28.1']
setup(
name='pyspw',
version='1.0',
name='Py-SPW',
version='1.0.3',
packages=['pyspw'],
url='https://github.com/teleport2/Py-SPW',
license='MIT License',
author='Stepan Khozhempo',
author_email='stepan@m.khoz.ru',
description='Library for spworlds API'
description='Python library for spworlds API',
long_description=description_md,
long_description_content_type='text/markdown'
)