Skip to content

Commit 8dec3e2

Browse files
author
youngfreefjs@gmail.com
committed
feat: upgrate setup description
1 parent ef1baad commit 8dec3e2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,17 @@ def read_requirements(name):
88
require_str = f.read()
99
return require_str.split()
1010

11+
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
12+
long_description = f.read()
13+
1114
setup(
1215
name='open-image-cli',
13-
version='0.1.1',
16+
version='0.1.2',
17+
author='youngfreefjs',
18+
url='https://github.com/youngfreeFJS/imagecli',
1419
packages=find_packages(),
20+
long_description=long_description,
21+
long_description_content_type="text/markdown",
1522
install_requires=read_requirements('requirements.txt'),
1623
entry_points={
1724
'console_scripts': [

0 commit comments

Comments
 (0)