forked from PMEAL/OpenPNM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (74 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
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.phases.mixtures',
'openpnm.phases.mixtures.species.ions',
'openpnm.phases.mixtures.species.liquids',
'openpnm.phases.mixtures.species.gases',
'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',
'transforms3d',
'flatdict',
'gitpython',
'jsonschema',
'unyt',
'terminaltables',
],
author='OpenPNM Team',
author_email='[email protected]',
download_url='https://github.com/pmeal/OpenPNM/',
url='http://openpnm.org',
project_urls={
'Documentation': 'https://openpnm.readthedocs.io/en/master/',
'Source': 'https://github.com/PMEAL/OpenPNM',
'Tracker': 'https://github.com/PMEAL/OpenPNM/issues',
},
)