Skip to content

Commit 827ac57

Browse files
committed
add long description to the pacakge
1 parent 03fb72c commit 827ac57

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
from setuptools import setup, find_packages
22

3+
from pathlib import Path
4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
6+
37
setup(
48
name = 'pydlm',
59
author = 'Xiangyu Wang',
610
author_email = '[email protected]',
711
description = ('A python library for the Bayesian dynamic linear ' +
812
'model for time series modeling'),
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
915
license = 'BSD',
1016
keywords = 'dlm bayes bayesian kalman filter smoothing dynamic model',
1117
url = 'https://github.com/wwrechard/pydlm',

0 commit comments

Comments
 (0)