forked from PMEAL/OpenPNM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (52 loc) · 1.41 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
#!/usr/bin/env python
import os
import sys
sys.path.append(os.getcwd())
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'OpenPNM',
description = 'A framework for conducting pore network modeling simulations of multiphase transport in porous materials.',
version = '1.1',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'
],
packages = [
'OpenPNM',
'OpenPNM.Base',
'OpenPNM.Network',
'OpenPNM.Network.models',
'OpenPNM.Geometry',
'OpenPNM.Geometry.models',
'OpenPNM.Phases',
'OpenPNM.Phases.models',
'OpenPNM.Physics',
'OpenPNM.Physics.models',
'OpenPNM.Utilities',
'OpenPNM.Algorithms',
'OpenPNM.Postprocessing'
],
install_requires = [
'numpy',
'scipy>=0.14.0',
'matplotlib',
'noise'
],
tests_require = [
'tox',
'pytest',
'pytest-cov',
'python-coveralls',
'interlude'
],
author = 'OpenPNM Team',
author_email = '[email protected]',
download_url = 'https://github.com/pmeal/OpenPNM/',
url = 'https://github.com/pmeal/OpenPNM'
)