-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 843 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fd:
long_description = fd.read()
setup(
name = 'cprint-jianjun',
version = '1.7.0',
author = 'jianjun',
author_email = '[email protected]',
url = 'https://github.com/EVA-JianJun/cprint',
description = u'Colorful Print 彩色文本格式化, 彩色文本输出, 控制打印字符颜色样式!',
long_description = long_description,
long_description_content_type = "text/markdown",
packages = ["cprint"],
install_requires = [
"forbiddenfruit>=0.1.4",
],
entry_points={
'console_scripts': [
'cpshow=cprint:_cpshow',
'cpshoww=cprint:_cpshoww',
'cpdemo=cprint:_demo',
'cpdemoid=cprint:_demoid',
],
},
)