-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
30 lines (28 loc) · 820 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="tenon",
version="0.1.7",
package_dir={"": "src"},
packages=["tenon"],
url="https://github.com/Juannie-PP/tenon",
license="MIT",
author="Juannie-PP",
author_email="[email protected]",
description="A package to solve captcha",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests>=2.19.1", "numpy>=1.21.5", "opencv-python==4.5.5.64"],
classifiers=[
"Programming Language :: Python :: 3",
],
keywords=[
"rotate_captcha",
"notch_captcha",
"captcha identify",
"captcha",
"verification code",
],
python_requires=">=3.7",
)