Skip to content

Commit

Permalink
release version
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshhewabi committed Jan 30, 2024
1 parent 06fc79a commit 0773c51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions parser/process_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from config.config_parser import get_conn_str
from parser.database_writer import DatabaseWriter

script_dir = os.path.dirname(os.path.abspath(__file__))
logging.config.fileConfig(os.path.join(script_dir, "../logging.ini"))
logging_config_file = os.path.join(os.path.dirname(__file__), '../logging.ini')
logging.config.fileConfig(logging_config_file)
logger = logging.getLogger(__name__)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_version(rel_path):

setup(
name="xi-mzidentml-converter",
version="0.1.13",
version="0.1.14",
description="xi-mzidentml-converter uses pyteomics (https://pyteomics.readthedocs.io/en/latest/index.html) to parse mzIdentML files (v1.2.0) and extract crosslink information. Results are written to a relational database (PostgreSQL or SQLite) using sqlalchemy.",
long_description_content_type="text/markdown",
long_description=long_description,
Expand Down

0 comments on commit 0773c51

Please sign in to comment.