Merge pull request #4 from hlohaus/pip

Update pip
This commit is contained in:
Zai 2023-11-12 15:40:21 +05:00 committed by GitHub
commit 7d550555aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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',
)