forked from XueLiren/PyZW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (46 loc) · 1.89 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# python setup.py bdist_wheel
# twine upload dist/*
# April7818
import os
import codecs
from setuptools import setup
# 读取指定文件内容
def read(filename):
file_path = os.path.join(os.path.dirname(__file__), filename)
return codecs.open(file_path, encoding='utf-8').read()
setup(
name='pyzw',
version='0.0.2',
author='XueLiren',
author_email='[email protected]',
# maintainer='XueLiren',
# maintainer_email='[email protected]',
license='Apache Software License 2.0',
# keywords="中文编程 ",
url='https://github.com/XueLiren/PyZW',
description='Python中文库(PyZW)是基于Python标准库和诸多第三方库再次封装的中文模块,其函数命令超过1000个,涵盖了人工智、前后台键鼠操作、找图找色、网页自动化、手机自动化、OCR、YOLO、OpenCV、Word文档、Excel表格、PPT演示等多个领域。',
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=['pyzw'],
python_requires='>=3.7',
# install_requires=[''],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
],
)