-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (52 loc) · 1.66 KB
/
Copy pathsetup.py
File metadata and controls
60 lines (52 loc) · 1.66 KB
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
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
"""
Project:
setup.py
@authors: Gary Li
@contact: gangly123@163.com
@site: http://my.csdn.net/freefishly
@version: python3
@create time: 2017/11/10 17:54
"""
#!/usr/bin/env python3
# coding=utf-8
from setuptools import setup
'''
数据质量预警与自动化数据测试工具
'''
setup(
name="beeper", # pypi中的名称,pip或者easy_install安装时使用的名称,或生成egg文件的名称
version="1.1",
author="Gary Li",
author_email="gangly123@163.com",
description="数据质量预警与自动化数据测试工具",
license="GPLv3",
keywords="data check quality alert",
url="http://pypi.python.org/pypi/beeper/",
packages=['beeper', 'beeper.lib'], # 需要打包的目录列表
# 需要安装的依赖
install_requires=[
'setuptools>=16.0',
'SQLAlchemy>=1.1.9',
'jinja2>=2.10'
],
# 添加这个选项,在windows下Python目录的scripts下生成exe文件
# 注意:模块与函数之间是冒号:
entry_points={'console_scripts': [
'beeper = beeper.beeper:main',
]},
# long_description=read('README.md'),
classifiers=[ # 程序的所属分类列表
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
# 此项需要,否则卸载时报windows error
zip_safe=False
)