Readme, some classifiers in setup.py, v1.1.0

This commit is contained in:
DarkCat09 2022-06-27 09:50:30 +04:00
parent 9c4274284f
commit 44a7b0fd9a
2 changed files with 10 additions and 10 deletions

View file

@ -4,10 +4,6 @@
An unofficial Aternos API written in Python. An unofficial Aternos API written in Python.
It uses [aternos](https://aternos.org/)' private API and html parsing. It uses [aternos](https://aternos.org/)' private API and html parsing.
> Note:
Now, the main repository is located on [Codeberg](https://codeberg.org/DarkCat09/python-aternos) because GitHub bans its Russian users.
I'm still updating the GH repository together with the Codeberg one.
## Installing ## Installing
```bash ```bash
pip install python-aternos pip install python-aternos
@ -72,9 +68,10 @@ The documentation have not made yet. View examples and ask in the issues.
|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/v1.0.0|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.|
|v1.0.x|Lots of bugfixes, changed versioning (SemVer).| |v1.0.x|Lots of bugfixes, changed versioning (SemVer).|
|v1.1.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.| |v1.1.x|Documentation and unit tests, switching to [c-websockets](https://pypi.org/project/c-websockets/).|
|v1.2.x|Full implementation of config and software API, unit tests and documentation are planned.| |v1.2.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.|
|v1.3.x|Shared access API and Google Drive backups are planned.| |v1.3.x|Full implementation of config and software API.|
|v1.4.x|Shared access API and Google Drive backups.|
## License ## License
[License Notice](NOTICE): [License Notice](NOTICE):

View file

@ -5,7 +5,7 @@ with open('README.md', 'rt') as readme:
setuptools.setup( setuptools.setup(
name='python-aternos', name='python-aternos',
version='1.0.5', version='1.1.0',
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',
@ -29,13 +29,16 @@ setuptools.setup(
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Operating System :: MacOS' 'Operating System :: MacOS',
'Intended Audience :: Developers',
'Topic :: Internet',
'Typing :: Typed'
], ],
install_requires=[ install_requires=[
'lxml>=4.8.0', 'lxml>=4.8.0',
'cloudscraper>=1.2.58', 'cloudscraper>=1.2.58',
'js2py>=0.71', 'js2py>=0.71',
'websockets>=10.1', 'c-websockets>=2.1.3',
'regex>=2022.3.15' 'regex>=2022.3.15'
], ],
packages=['python_aternos'], packages=['python_aternos'],