Skip to content

Commit

Permalink
Update version and long description in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
titipata committed Apr 13, 2024
1 parent ff20c44 commit 024694a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pubmed_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Author: Titipat Achakulvisut, Daniel E. Acuna
"""
__version__ = "0.3.1"
__version__ = "0.4.0"
from .pubmed_oa_parser import (
list_xml_path,
parse_pubmed_xml,
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
#! /usr/bin/env python
from setuptools import setup

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

if __name__ == "__main__":
setup(
name="pubmed_parser",
version="0.4.0",
description="A python parser for Pubmed Open-Access Subset and MEDLINE XML repository",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/titipata/pubmed_parser",
download_url="https://github.com/titipata/pubmed_parser.git",
author="Titipat Achakulvisut",
Expand Down

0 comments on commit 024694a

Please sign in to comment.