Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rmj3197 committed Oct 3, 2024
1 parent 96c53e2 commit 2bf3ef5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
"scipy>=1.11.0",
]

LONG_DESCRIPTION = """
DESCRIPTION = """
Methods for detecting signals related to adverse event
and medical product (e.g., drugs, vaccines) pairs. This includes a data
generation function for simulating pharmacovigilance datasets, along with
various utility functions.
various utility functions. For more details, see Liu A., Mukhopadhyay R., and Markatou M.
[arXiv:2410.01168](https://doi.org/10.48550/arXiv.2410.01168).
"""


Expand Down Expand Up @@ -60,9 +61,9 @@ def __str__(self):
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description="Modified Detecting Deviating Cells Algorithm in Pharmacovigilance",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
description=DESCRIPTION,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=REQUIRED_PACKAGES,
ext_modules=ext_modules,
Expand Down

0 comments on commit 2bf3ef5

Please sign in to comment.