Skip to content

Commit affbd18

Browse files
author
Xing Han Lu
authored
Add long description to setup.py
1 parent 318b2d2 commit affbd18

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import io
12
import json
23
import os
34
from setuptools import setup
@@ -17,9 +18,12 @@
1718
include_package_data=True,
1819
license=package['license'],
1920
description=package['description'] if 'description' in package else package_name,
21+
long_description=io.open('README.md', encoding='utf-8').read(),
22+
long_description_content_type='text/markdown',
2023
install_requires=[
2124
'dash',
2225
'dash-html-components',
2326
'dash_renderer',
24-
]
27+
],
28+
url='https://dash.plot.ly/cytoscape'
2529
)

0 commit comments

Comments
 (0)