We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318b2d2 commit affbd18Copy full SHA for affbd18
setup.py
@@ -1,3 +1,4 @@
1
+import io
2
import json
3
import os
4
from setuptools import setup
@@ -17,9 +18,12 @@
17
18
include_package_data=True,
19
license=package['license'],
20
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',
23
install_requires=[
24
'dash',
25
'dash-html-components',
26
'dash_renderer',
- ]
27
+ ],
28
+ url='https://dash.plot.ly/cytoscape'
29
)
0 commit comments