We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03fb72c commit 827ac57Copy full SHA for 827ac57
setup.py
@@ -1,11 +1,17 @@
1
from setuptools import setup, find_packages
2
3
+from pathlib import Path
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
+
7
setup(
8
name = 'pydlm',
9
author = 'Xiangyu Wang',
10
author_email = '[email protected]',
11
description = ('A python library for the Bayesian dynamic linear ' +
12
'model for time series modeling'),
13
+ long_description=long_description,
14
+ long_description_content_type='text/markdown',
15
license = 'BSD',
16
keywords = 'dlm bayes bayesian kalman filter smoothing dynamic model',
17
url = 'https://github.com/wwrechard/pydlm',
0 commit comments