forked from PMEAL/OpenPNM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (63 loc) · 1.71 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
import sys
from distutils.util import convert_path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
sys.path.append(os.getcwd())
main_ = {}
ver_path = convert_path('openpnm/__init__.py')
with open(ver_path) as f:
for line in f:
if line.startswith('__version__'):
exec(line, main_)
setup(
name='openpnm',
description = 'A framework for conducting pore network modeling simulations of multiphase transport in porous materials',
version=main_['__version__'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'
],
packages=[
'openpnm',
'openpnm.core',
'openpnm.network',
'openpnm.geometry',
'openpnm.phases',
'openpnm.physics',
'openpnm.utils',
'openpnm.io',
'openpnm.models',
'openpnm.models.misc',
'openpnm.models.geometry',
'openpnm.models.phases',
'openpnm.models.physics',
'openpnm.algorithms',
'openpnm.topotools',
'openpnm.materials',
],
install_requires=[
'numpy>=1.15',
'scipy>=1.1',
'scikit-image>=0.14',
'networkx>=2',
'h5py>=2.8',
'sympy',
'matplotlib',
'pandas',
'numba',
'porespy',
'transforms3d',
'flatdict',
'gitpython',
],
author='OpenPNM Team',
author_email='jgostick@uwaterloo.ca',
download_url='https://github.com/pmeal/OpenPNM/',
url='http://openpnm.org'
)