Skip to content

Commit

Permalink
Fix for PIPY
Browse files Browse the repository at this point in the history
  • Loading branch information
sureshhewabi committed Nov 7, 2024
1 parent 6f5744c commit 4ea4f32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Empty file added schema/__init__.py
Empty file.
5 changes: 3 additions & 2 deletions 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.3.5",
version="0.3.6",
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.",
Expand All @@ -34,7 +34,8 @@ def get_version(rel_path):
license="'Apache 2.0",
url="https://github.com/PRIDE-Archive/xi-mzidentml-converter",
packages=find_packages(),
package_data={'config': ['logging.ini'], 'schema': ['mzIdentML1.2.0.xsd', 'mzIdentML1.3.0.xsd']},
include_package_data=True,
package_data={'config': ['logging.ini'], 'schema': ['*.xsd']},
install_requires=[
'lxml>=4.9.1',
'numpy>=1.14.3',
Expand Down

0 comments on commit 4ea4f32

Please sign in to comment.