Skip to content
Snippets Groups Projects
Commit 24dcf15a authored by Loïc Le Guyader's avatar Loïc Le Guyader
Browse files

Add install requires to steup.py

parent 853636f4
No related branches found
No related tags found
1 merge request!14Collection of small updates
from setuptools import setup, find_packages
install_requires = [pandas, scipy, sympy, matplotlib, ipywidgets]
setup(name='TZPGcalc',
version=1.0,
description='TZPG calculator for SCS',
......@@ -8,5 +10,6 @@ setup(name='TZPGcalc',
url='https://in.xfel.eu/gitlab/SCS/tzpgcalc',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=install_requires,
python_requires='>=3.8'
)
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