-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 736 Bytes
/
setup.py
File metadata and controls
19 lines (18 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='PyMPDATA-examples',
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['PyMPDATA @ git+https://github.com/atmos-cloud-sim-uj/PyMPDATA@f33d602#egg=PyMPDATA',
'pystrict>=1.1',
'matplotlib>=3.2.1',
'ipywidgets>=7.5.1',
'scipy>=1.4.1',
'pint>=0.16.1',
'joblib>=0.14.1',
'sympy>=1.6.1',
'ghapi'],
author='https://github.com/orgs/atmos-cloud-sim-uj/people',
license="GPL-3.0",
packages=find_packages(include=['PyMPDATA_examples', 'PyMPDATA_examples.*'])
)