-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 945 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
#!/usr/bin/env python
"""
Setup script for XtendedFiniteVolume project
"""
from setuptools import setup, find_packages
setup(python_requires='>3.6',
name='XtendedFiniteVolume',
version='1.0',
description='A 1D hydrocode with discontinuous fields abilities',
author='Guillaume Peillex',
author_email='guillaume.peillex@gmail.com',
maintainer='Guillaume Peillex',
maintainer_email='guillaume.peillex@gmail.com',
url='https://github.com/hippo91/XVOF',
packages=find_packages(),
scripts=['xfv/XtendedFiniteVolume.py'],
install_requires=['h5py',
'matplotlib',
'numpy>=1.16.0',
'PyQt5',
'sphinx',
'guzzle_sphinx_theme',
'vnr-internal-energy @ git+https://github.com/hippo91/nonlinear_solver.git@master#egg=vnr-internal-energy-1.0'],
)