From 546216a181efaa55d9efb44b5f21df0c9344cec4 Mon Sep 17 00:00:00 2001 From: sureshhewa Date: Thu, 25 Apr 2024 17:11:21 +0100 Subject: [PATCH] release 0.1.25v --- .gitignore | 1 - config/database.ini | 18 ++++++++++++++++++ setup.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 config/database.ini diff --git a/.gitignore b/.gitignore index 36192c3..3600dc1 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,6 @@ credentials.py test.db database.ini -config/database.ini kubernetes.yml Dockerfile xi_mzidentml_converter.egg-info diff --git a/config/database.ini b/config/database.ini new file mode 100644 index 0000000..1a504cc --- /dev/null +++ b/config/database.ini @@ -0,0 +1,18 @@ +[postgresql] +host=${DB_HOST} +database=${DB_DATABASE_NAME} +user=${DB_USER} +password=${DB_PASSWORD} +port=${DB_PORT} + +[api] +apikey=${API_KEY} +api_key_value=${API_KEY_VALUE} +base_url=${BASE_URL} + + +[redis] +host=$REDIS_HOST +port=$REDIS_PORT +password=$REDIS_PASSWORD +peptide_per_protein=$PEPTIDE_PER_PROTEIN \ No newline at end of file diff --git a/setup.py b/setup.py index cdbda4a..c592454 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def get_version(rel_path): setup( name="xi-mzidentml-converter", - version="0.1.24", + version="0.1.25", 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,