forked from PMEAL/porespy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 1.86 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
import os
import sys
from distutils.util import convert_path
sys.path.append(os.getcwd())
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
main_ = {}
ver_path = convert_path('porespy/__init__.py')
with open(ver_path) as f:
for line in f:
if line.startswith('__version__'):
exec(line, main_)
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='porespy',
description='A set of tools for analyzing 3D images of porous materials',
long_description=long_description,
# long_description_content_type="text/x-rst",
version=main_['__version__'],
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
packages=['porespy',
'porespy.tools',
'porespy.generators',
'porespy.metrics',
'porespy.filters',
'porespy.networks',
'porespy.visualization',
'porespy.io'],
install_requires=['numpy',
'scipy',
'matplotlib',
'scikit-image',
'pandas',
'imageio',
'tqdm',
'array_split',
'pytrax',
'pyevtk',
'numba',
'openpnm'],
author='Jeff Gostick',
author_email='jgostick@gmail.com',
url='http://porespy.org',
project_urls={
'Documentation': 'https://porespy.readthedocs.io/en/master/',
'Source': 'https://github.com/PMEAL/porespy/',
'Tracker': 'https://github.com/PMEAL/porespy/issues',
},
)