forked from danielsk78/pygeoiga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 777 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
29
30
from setuptools import setup, find_packages
version = '1.0'
setup(
name='pygeoiga',
version=version,
packages=find_packages(exclude=('test', 'docs')),
include_package_data=True,
install_requires=[
'matplotlib >= 3.2.1',
'numpy',
'scipy',
'ipython',
'jupyter',
'pyvista',
'pytest',
'PyQt5',
'pygmsh==6.1.1',
'gmsh',
'meshio==4.0.3',
'tqdm'
],
url='https://github.com/danielsk78/master_thesis_IGA-Geothermal-Modeling',
license='LGPL v3',
author='Daniel Escallon',
author_email='[email protected]',
description='perform IGA and bezier extraction and manage plotting',
keywords=['bezier', 'splines', 'nurbs', 'geology']
)