2021-10-08 19:35:20 +04:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open('README.md', 'rt') as readme:
|
2022-06-23 15:13:56 +04:00
|
|
|
long_description = readme.read()
|
2021-10-08 19:35:20 +04:00
|
|
|
|
|
|
|
setuptools.setup(
|
2022-06-23 15:13:56 +04:00
|
|
|
name='python-aternos',
|
2022-07-26 10:22:49 +04:00
|
|
|
version='1.1.1',
|
2022-06-23 15:13:56 +04: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={
|
|
|
|
'Homepage': 'https://codeberg.org/DarkCat09/python-aternos',
|
|
|
|
'GitHub': 'https://github.com/DarkCat09/python-aternos',
|
|
|
|
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
|
|
|
|
'Bug Tracker 2': 'https://codeberg.org/DarkCat09/python-aternos/issues'
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
2022-06-27 09:50:30 +04:00
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Internet',
|
|
|
|
'Typing :: Typed'
|
2022-06-23 15:13:56 +04:00
|
|
|
],
|
|
|
|
install_requires=[
|
|
|
|
'lxml>=4.8.0',
|
|
|
|
'cloudscraper>=1.2.58',
|
|
|
|
'js2py>=0.71',
|
2022-07-01 09:36:52 +04:00
|
|
|
'websockets>=10.1',
|
2022-06-23 15:13:56 +04:00
|
|
|
'regex>=2022.3.15'
|
|
|
|
],
|
|
|
|
packages=['python_aternos'],
|
|
|
|
python_requires=">=3.7",
|
2021-10-08 19:35:20 +04:00
|
|
|
)
|