Skip to content
Snippets Groups Projects
Commit 86eb7288 authored by Dominique Benielli's avatar Dominique Benielli
Browse files

Edit setup.py

parent f8f89398
Branches
Tags
No related merge requests found
Pipeline #16285 failed
......@@ -155,6 +155,10 @@ def setup_package():
# 'Tracker': '{}/issues'.format(url)}
packages = find_packages(exclude=['*.tests'])
include_package_data = True
extras_require = {
'test': ["pytest", "pytest-cov"],
'doc': ["sphinx==5.0", "numpydoc", "sphinx_gallery", "matplotlib", "sphinx_rtd_theme"]}
# python_requires=python_requires, description=description,author=author,
# classifiers=classifiers, keywords=keywords, install_requires=install_requires,
setup(
......@@ -162,7 +166,8 @@ def setup_package():
long_description=long_description,
long_description_content_type=long_description_content_type,
packages=packages,
include_package_data=include_package_data)
include_package_data=include_package_data
extras_require=extras_require)
if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment