Skip to content
Snippets Groups Projects
Commit 083eb708 authored by schmittu's avatar schmittu :beer:
Browse files

fixed tox

parent dd43fb50
No related branches found
No related tags found
No related merge requests found
recursive-include emzed/ext/mzmine2 *.json
recursive-include emzed/ext/mzmine2/java *.jar
from setuptools import setup
from setuptools import setup, find_namespace_packages
install_requires = ("jpype1", "requests", "emzed-lib")
install_requires = ("jpype1", "requests", "emzed.lib")
setup(
name="emzed-ext-mzmine2",
......@@ -10,8 +10,9 @@ setup(
author="Uwe Schmitt",
author_email="uwe.schmitt@id.ethz.ch",
license="MIT",
packages=["emzed.ext.mzmine2"],
packages=find_namespace_packages(include=["emzed.*"]),
namespace_packages=["emzed.ext"],
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
)
......@@ -23,6 +23,6 @@ whitelist_externals =
make
commands =
pip install -r requirements_dev.txt
pip install -e .
pip install --extra-index-url http://pypi-sissource.ethz.ch/simple/ --trusted-host pypi-sissource.ethz.ch .
make -C docs html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment