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

45 lines
1.4 KiB
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
setuptools.setup(
2021-11-01 17:04:19 +03:00
name='python-aternos',
2022-05-16 17:19:59 +03:00
version='1.0.3',
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={
2022-05-13 17:05:23 +03:00
'Homepage': 'https://codeberg.org/DarkCat09/python-aternos',
'GitHub': 'https://github.com/DarkCat09/python-aternos',
2022-04-28 08:29:20 +03:00
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
2022-05-13 17:05:23 +03:00
'Bug Tracker 2': 'https://codeberg.org/DarkCat09/python-aternos/issues'
2021-11-01 17:04:19 +03:00
},
classifiers=[
2022-03-17 09:24:58 +03:00
'Development Status :: 4 - Beta',
2021-11-01 17:04:19 +03:00
'Programming Language :: Python :: 3',
2022-05-13 17:05:23 +03:00
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
2021-11-01 17:04:19 +03:00
'License :: OSI Approved :: Apache Software License',
2022-05-13 17:05:23 +03:00
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Other OS'
2021-11-01 17:04:19 +03:00
],
2022-04-07 10:32:13 +03:00
install_requires=[
'lxml>=4.8.0',
'cloudscraper>=1.2.58',
'js2py>=0.71',
'websockets>=10.1',
'regex>=2022.3.15'
],
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
)