Update pip

This commit is contained in:
Heiner Lohaus 2023-11-12 05:33:20 +01:00
parent 21d5f3a6be
commit 0581d7fe35
2 changed files with 9 additions and 3 deletions

View file

@ -31,7 +31,7 @@ else:
### Installation
```sh
pip install git+https://github.com/Zai-Kun/py-arkose-token-generator.git
pip install py-arkose-generator
```
Originally translated from [funcaptcha](https://github.com/noahcoolboy/funcaptcha)

View file

@ -1,10 +1,16 @@
#!/usr/bin/env python
from setuptools import find_packages, setup
with open('README.md') as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name='py_arkose_generator',
version='0.0.0.2',
packages=find_packages(),
install_requires=["mmh3"],
install_requires=['pycryptodome', 'mmh3'],
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/Zai-Kun/py-arkose-token-generator/tree/main',
)