-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (29 loc) · 1.06 KB
/
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
31
32
33
34
35
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
with open(HERE / "README.md", encoding="utf-8") as f:
README = f.read()
with open("requirements.txt") as f:
install_requires = [line for line in f if line and line[0] not in "#-"]
setuptools.setup(
name="auth_swust",
version="1.5.0",
url="https://github.com/BuddingLab/auth_swust",
author="BudyLab",
author_email="[email protected]",
description="模拟登录西南科技大学一站式网上服务大厅,带验证码识别",
long_description=README,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=install_requires,
extras_require={"tensorflow": ["tensorflow>=2.1.0"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={
"auth_swust": ["captcha_recognition/model/**/*", "captcha_recognition/model/*"]
},
)