-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 894 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Joseph Elmes: NERC-Funded PhD Researcher in Applied Mathematics
University of Leeds : Leeds LS2 9JT : [email protected]
Python 3.7: Tue Nov 1 18:20:21 2021
"""
##from setuptools import setup
from distutils.core import setup
setup(name='Barotropic SWEs DG-FEM',
version= '0.1',
description= 'Barotropic SWEs DG-FEM',
url= 'http://github.com/ml14je/barotropicSWEs',
author= 'Joseph Elmes',
author_email= '[email protected]',
license='None',
install_requires=[
'numpy', 'scipy', 'pandas', 'matplotlib',
'sympy', 'bottleneck', 'cython', 'numba',
'oceanmesh'
# 'ChannelWaves1D', 'ppp', 'oceanmesh'
],
packages=['barotropicSWEs'],
package_data={'defaults': ['supporting_files/defaults.json']},
zip_safe=False)