Skip to content

Commit

Permalink
sphinx to gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vgp57214_gsk committed Mar 15, 2024
1 parent 5d2758c commit bca50f7
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@
from setuptools import setup
import os

# version_path = os.path.join(
# os.path.dirname(__file__),
# 'pymzml',
# 'version.txt'
# )
# with open(version_path, 'r') as version_file:
# pymzml_version = version_file.read().strip()
version_path = os.path.join(
os.path.dirname(__file__),
'pymzml',
'version.txt'
)
with open(version_path, 'r') as version_file:
pymzml_version = version_file.read().strip()

setup(
name = 'pymzml',
use_scm_version = True,
setup_requires = ['setuptools_scm'],
# version = pymzml_version,
version = pymzml_version,
packages = ['pymzml', 'pymzml.file_classes', 'pymzml.utils'],
package_dir = {'pymzml': 'pymzml'},
package_data = {
Expand All @@ -36,7 +34,7 @@
],
'plot': ['plotly<5.0'],
'pynumpress': ['pynumpress>=0.0.4'],
'deconvolution': ['ms_deisotope==0.0.14']
'deconvolution': ['ms_deisotope==0.0.14']
},
description = 'high-throughput mzML parsing',
long_description = 'pymzML - python module for mzML parsing',
Expand All @@ -62,4 +60,4 @@
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
)
)

0 comments on commit bca50f7

Please sign in to comment.