Update pip
This commit is contained in:
parent
21d5f3a6be
commit
0581d7fe35
2 changed files with 9 additions and 3 deletions
|
@ -31,7 +31,7 @@ else:
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
```sh
|
```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)
|
Originally translated from [funcaptcha](https://github.com/noahcoolboy/funcaptcha)
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -1,10 +1,16 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
with open('README.md') as fh:
|
||||||
|
long_description = fh.read()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
setup(
|
setup(
|
||||||
name='py_arkose_generator',
|
name='py_arkose_generator',
|
||||||
|
version='0.0.0.2',
|
||||||
packages=find_packages(),
|
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',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue