Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 20df128

Browse files
committed
Add long_description.
1 parent 9fd2e4c commit 20df128

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## [UNRELEASED] - 2018-12-17
66
### Changed
77
- Added `.idea`, `tests`, `dist`, `.circleci` to npmignore.
8-
- Added repository url to setup.py
8+
- Added repository url and long_description to setup.py
99

1010
## [0.13.4] - 2018-12-17
1111
### Fixed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import io
12
from setuptools import setup
23

34
main_ns = {}
@@ -13,5 +14,7 @@
1314
include_package_data=True,
1415
license='MIT',
1516
description='Dash UI HTML component suite',
17+
long_description=io.open('README.md', encoding='utf-8').read(),
18+
long_description_content_type='text/markdown',
1619
install_requires=['dash']
1720
)

0 commit comments

Comments
 (0)