Skip to content
Snippets Groups Projects
Commit ee4148ef authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Care for the dev-reqs on make install-dev

parent ac1fdd57
No related branches found
No related tags found
1 merge request!1Merge python environment
Pipeline #9370 failed
......@@ -41,7 +41,7 @@ install:
pip install .
install-dev:
pip install -e .
pip install -e ".[dev]"
test:
python -m pytest --junitxml=./reports/junit.xml -o junit_suite_name=$(PKGNAME) $(PKGNAME)
......
......@@ -18,6 +18,9 @@ __email__ = 'jschumann@km3net.de'
with open('requirements.txt') as fobj:
REQUIREMENTS = [l.strip() for l in fobj.readlines()]
with open('requirements-dev.txt') as fobj:
DEV_REQUIREMENTS = [l.strip() for l in fobj.readlines()]
setup(
name=PACKAGE_NAME,
url=URL,
......@@ -33,6 +36,9 @@ setup(
'tag_regex': r'^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$',
},
install_requires=REQUIREMENTS,
extras_require={
'dev': DEV_REQUIREMENTS
},
python_requires='>=3.0',
classifiers=[
'Development Status :: 3 - Alpha',
......
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