Readme, some classifiers in setup.py, v1.1.0
This commit is contained in:
parent
9c4274284f
commit
44a7b0fd9a
2 changed files with 10 additions and 10 deletions
11
README.md
11
README.md
|
@ -4,10 +4,6 @@
|
|||
An unofficial Aternos API written in Python.
|
||||
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
|
||||
```bash
|
||||
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.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.1.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.|
|
||||
|v1.2.x|Full implementation of config and software API, unit tests and documentation are planned.|
|
||||
|v1.3.x|Shared access API and Google Drive backups are planned.|
|
||||
|v1.1.x|Documentation and unit tests, switching to [c-websockets](https://pypi.org/project/c-websockets/).|
|
||||
|v1.2.x|Switching to selenium with [a custom Chrome driver](https://github.com/ultrafunkamsterdam/undetected-chromedriver), writing API documentation.|
|
||||
|v1.3.x|Full implementation of config and software API.|
|
||||
|v1.4.x|Shared access API and Google Drive backups.|
|
||||
|
||||
## License
|
||||
[License Notice](NOTICE):
|
||||
|
|
9
setup.py
9
setup.py
|
@ -5,7 +5,7 @@ with open('README.md', 'rt') as readme:
|
|||
|
||||
setuptools.setup(
|
||||
name='python-aternos',
|
||||
version='1.0.5',
|
||||
version='1.1.0',
|
||||
author='Chechkenev Andrey (@DarkCat09)',
|
||||
author_email='aacd0709@mail.ru',
|
||||
description='An unofficial Aternos API',
|
||||
|
@ -29,13 +29,16 @@ setuptools.setup(
|
|||
'Operating System :: OS Independent',
|
||||
'Operating System :: Microsoft :: Windows',
|
||||
'Operating System :: POSIX :: Linux',
|
||||
'Operating System :: MacOS'
|
||||
'Operating System :: MacOS',
|
||||
'Intended Audience :: Developers',
|
||||
'Topic :: Internet',
|
||||
'Typing :: Typed'
|
||||
],
|
||||
install_requires=[
|
||||
'lxml>=4.8.0',
|
||||
'cloudscraper>=1.2.58',
|
||||
'js2py>=0.71',
|
||||
'websockets>=10.1',
|
||||
'c-websockets>=2.1.3',
|
||||
'regex>=2022.3.15'
|
||||
],
|
||||
packages=['python_aternos'],
|
||||
|
|
Reference in a new issue