Skip to content

Commit

Permalink
Specify documentation dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mobiusklein committed Jul 30, 2024
1 parent 917acbf commit 00cc37d
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions implementations/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,25 @@
from setuptools import setup, find_packages

setup(
name='mzpaf',
packages=find_packages(exclude=('tests',)),
name="mzpaf",
packages=find_packages(exclude=("tests",)),
requires=["pyteomics"],
version='0.1.0-alpha',
description='HUPO-PSI Peptide peak annotation format',
extras_require=dict(
docs=[
"sphinx",
"sphinx-rtd-theme",
"numpydoc>=1,<2",
"sphinx_click",
"myst-parser",
"sphinx-autobuild",
],
),
version="0.1.0-alpha",
description="HUPO-PSI Peptide peak annotation format",
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 3 - Alpha"
"Development Status :: 3 - Alpha",
],
)

0 comments on commit 00cc37d

Please sign in to comment.