This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/setup.py

33 lines
997 B
Python
Raw Normal View History

2021-10-08 18:35:20 +03:00
import setuptools
with open('README.md', 'rt') as readme:
2021-11-01 17:04:19 +03:00
long_description = readme.read()
2021-10-08 18:35:20 +03:00
with open('requirements.txt', 'rt') as f:
requires = f.readlines()
for i, r in enumerate(requires):
requires[i] = r.strip('\r\n')
2021-10-08 18:35:20 +03:00
setuptools.setup(
2021-11-01 17:04:19 +03:00
name='python-aternos',
version='0.6',
2021-11-01 17:04:19 +03:00
author='Chechkenev Andrey (@DarkCat09)',
author_email='aacd0709@mail.ru',
description='An unofficial Aternos API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DarkCat09/python-aternos',
project_urls={
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
'Documentation': 'https://github.com/DarkCat09/python-aternos/wiki/Client-(entry-point)',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent'
],
install_requires=requires,
2021-11-01 17:04:19 +03:00
packages=['python_aternos'],
2022-01-22 14:10:30 +03:00
python_requires=">=3.7",
2021-10-08 18:35:20 +03:00
)