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

66 lines
2.1 KiB
Python
Raw Normal View History

2021-10-08 18:35:20 +03:00
import setuptools
with open('README.md', 'rt') as readme:
2022-06-23 14:13:56 +03:00
long_description = readme.read()
2021-10-08 18:35:20 +03:00
setuptools.setup(
2022-06-23 14:13:56 +03:00
name='python-aternos',
2023-07-27 09:59:35 +03:00
version='3.0.4',
2022-06-23 14:13:56 +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-10-05 13:36:16 +03:00
'Documentation': 'https://python-aternos.codeberg.page',
2022-06-23 14:13:56 +03:00
'GitHub': 'https://github.com/DarkCat09/python-aternos',
'Bug Tracker': 'https://github.com/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',
2023-07-04 13:23:47 +03:00
'Programming Language :: Python :: 3.11',
2022-06-23 14:13:56 +03:00
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Intended Audience :: Developers',
'Topic :: Internet',
2022-10-05 13:36:16 +03:00
'Typing :: Typed',
2022-06-23 14:13:56 +03:00
],
install_requires=[
'cloudscraper==1.2.71',
'Js2Py==0.74',
'lxml==4.9.2',
'regex==2023.6.3',
'websockets==11.0.3',
2022-06-23 14:13:56 +03:00
],
extras_require={
'dev': [
'autopep8==2.0.2',
'pycodestyle==2.10.0',
'mypy==1.4.1',
'pylint==2.17.4',
'requests-mock==1.11.0',
'types-requests==2.31.0.1',
],
'pypi': [
'build==0.10.0',
'twine==4.0.2',
],
'docs': [
'mkdocs==1.4.3',
'mkdocstrings[python]==0.22.0',
]
},
2022-06-23 14:13:56 +03:00
packages=['python_aternos'],
python_requires=">=3.7",
include_package_data=True,
2021-10-08 18:35:20 +03:00
)