-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (34 loc) · 930 Bytes
/
setup.py
File metadata and controls
42 lines (34 loc) · 930 Bytes
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
# -*- coding: utf-8 -*-
#
# 安装程序
# Author: alex
# Created Time: 2018年04月02日 星期一 17时29分45秒
from distutils.core import setup
LONG_DESCRIPTION = """
常用图像处理工具库
""".strip()
SHORT_DESCRIPTION = """
常用图像处理工具库""".strip()
DEPENDENCIES = [
'pillow',
'opencv-python',
'numpy',
]
VERSION = '0.3.3'
URL = 'https://github.com/cyy0523xc/python-image-utils'
setup(
name='image_utils',
version=VERSION,
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
author='Alex Cai',
author_email='cyy0523xc@gmail.com',
license='Apache Software License',
keywords='image utils',
packages=['image_utils'],
package_dir={'image_utils': 'image_utils'},
package_data={'image_utils': ['SimHei.ttf']},
# 对应目录: /usr/local/image_utils/
# data_files=[('image_utils', ['image_utils/SimHei.ttf'])]
)