Skip to content

Commit

Permalink
add long description to the pacakge
Browse files Browse the repository at this point in the history
  • Loading branch information
wwrechard committed May 7, 2023
1 parent 03fb72c commit 827ac57
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
from setuptools import setup, find_packages

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name = 'pydlm',
author = 'Xiangyu Wang',
author_email = '[email protected]',
description = ('A python library for the Bayesian dynamic linear ' +
'model for time series modeling'),
long_description=long_description,
long_description_content_type='text/markdown',
license = 'BSD',
keywords = 'dlm bayes bayesian kalman filter smoothing dynamic model',
url = 'https://github.com/wwrechard/pydlm',
Expand Down

0 comments on commit 827ac57

Please sign in to comment.