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 84600d5 commit 77fe38a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ COPY parser ./parser
COPY tests ./tests
COPY *.py .
COPY default.database.ini .
COPY logging.ini .
COPY config/logging.ini .
COPY .kubernetes.yml .
File renamed without changes.
2 changes: 1 addition & 1 deletion parser/process_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from config.config_parser import get_conn_str
from parser.database_writer import DatabaseWriter

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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ def get_version(rel_path):

setup(
name="xi-mzidentml-converter",
version="0.1.15",
version="0.1.16",
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,
license="'Apache 2.0",
url="https://github.com/PRIDE-Archive/xi-mzidentml-converter",
packages=find_packages(),
package_data={'': ['logging.ini']},
package_data={'config': ['logging.ini']},
install_requires=[
'fastapi>=0.68.0,<0.69.0',
'uvicorn<=0.16.0,>=0.15.0',
Expand Down

0 comments on commit 77fe38a

Please sign in to comment.