Files
Py-SPW/setup.py
2023-05-09 13:35:07 +03:00

31 lines
861 B
Python

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 = open('requirements.txt', 'r').read().split('\n')
setup(
name='Py-SPW',
version=__version__,
packages=['pyspw'],
url='https://github.com/teleportx/Py-SPW',
license='MIT License',
author='Stepan Khozhempo',
author_email='stepan@xstl.ru',
description='Python library for spworlds API',
long_description=description_md,
long_description_content_type='text/markdown',
install_requires=requirements,
python_requires='>=3.7',
project_urls={
"Docs": "https://pyspw.xstl.ru/en/latest/",
"GitHub": "https://github.com/teleport2/Py-SPW/"
},
)