This commit is contained in:
DarkCat09 2022-04-28 09:29:20 +04:00
parent caf2b1933e
commit 490a68982a
3 changed files with 7 additions and 8 deletions

View file

@ -62,10 +62,10 @@ if testserv != None:
|v0.3|Implemented files API, added typization.| |v0.3|Implemented files API, added typization.|
|v0.4|Implemented configuration API, some bugfixes.| |v0.4|Implemented configuration API, some bugfixes.|
|v0.5|The API was updated corresponding to new Aternos security methods. Huge thanks to [lusm554](https://github.com/lusm554).| |v0.5|The API was updated corresponding to new Aternos security methods. Huge thanks to [lusm554](https://github.com/lusm554).|
|v0.6|Code refactoring, websockets API and session saving to prevent detecting automation access.| |v0.6/v1.0.0|Code refactoring, websockets API and session saving to prevent detecting automation access.|
|v0.7|Full implementation of config and software API, unit tests and documentation is planned.| |v1.0.1|Cloudflare bypassing fix, changed versioning (follows SemVer).|
|v0.8|Shared access API and Google Drive backups is planned.| |v1.1.x|Full implementation of config and software API, unit tests and documentation is planned.|
|v0.9.x|A long debugging before stable release, SemVer version code.| |v1.2.x|Shared access API and Google Drive backups is planned.|
## License ## License
[License Notice](NOTICE): [License Notice](NOTICE):

View file

@ -1,5 +1,4 @@
lxml>=4.8.0 lxml>=4.8.0
requests>=2.25.1
cloudscraper>=1.2.58 cloudscraper>=1.2.58
js2py>=0.71 js2py>=0.71
websockets>=10.1 websockets>=10.1

View file

@ -5,7 +5,7 @@ with open('README.md', 'rt') as readme:
setuptools.setup( setuptools.setup(
name='python-aternos', name='python-aternos',
version='0.6', version='1.0.1',
author='Chechkenev Andrey (@DarkCat09)', author='Chechkenev Andrey (@DarkCat09)',
author_email='aacd0709@mail.ru', author_email='aacd0709@mail.ru',
description='An unofficial Aternos API', description='An unofficial Aternos API',
@ -13,7 +13,8 @@ setuptools.setup(
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
url='https://github.com/DarkCat09/python-aternos', url='https://github.com/DarkCat09/python-aternos',
project_urls={ project_urls={
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues' 'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
'Alternative Repo': 'https://codeberg.org/DarkCat09/python-aternos'
}, },
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
@ -23,7 +24,6 @@ setuptools.setup(
], ],
install_requires=[ install_requires=[
'lxml>=4.8.0', 'lxml>=4.8.0',
'requests>=2.25.1',
'cloudscraper>=1.2.58', 'cloudscraper>=1.2.58',
'js2py>=0.71', 'js2py>=0.71',
'websockets>=10.1', 'websockets>=10.1',