diff --git a/README.md b/README.md index b6f110f..7dcfc20 100644 --- a/README.md +++ b/README.md @@ -62,10 +62,10 @@ if testserv != None: |v0.3|Implemented files API, added typization.| |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.6|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.| -|v0.8|Shared access API and Google Drive backups is planned.| -|v0.9.x|A long debugging before stable release, SemVer version code.| +|v0.6/v1.0.0|Code refactoring, websockets API and session saving to prevent detecting automation access.| +|v1.0.1|Cloudflare bypassing fix, changed versioning (follows SemVer).| +|v1.1.x|Full implementation of config and software API, unit tests and documentation is planned.| +|v1.2.x|Shared access API and Google Drive backups is planned.| ## License [License Notice](NOTICE): diff --git a/requirements.txt b/requirements.txt index 1c6cf64..d51b21a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ lxml>=4.8.0 -requests>=2.25.1 cloudscraper>=1.2.58 js2py>=0.71 websockets>=10.1 diff --git a/setup.py b/setup.py index f929df2..8b4b3a4 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'rt') as readme: setuptools.setup( name='python-aternos', - version='0.6', + version='1.0.1', author='Chechkenev Andrey (@DarkCat09)', author_email='aacd0709@mail.ru', description='An unofficial Aternos API', @@ -13,7 +13,8 @@ setuptools.setup( long_description_content_type='text/markdown', url='https://github.com/DarkCat09/python-aternos', 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=[ 'Development Status :: 4 - Beta', @@ -23,7 +24,6 @@ setuptools.setup( ], install_requires=[ 'lxml>=4.8.0', - 'requests>=2.25.1', 'cloudscraper>=1.2.58', 'js2py>=0.71', 'websockets>=10.1',