-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (52 loc) · 1.39 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
#!/usr/bin/env python
from __future__ import print_function
from setuptools import setup, Extension, find_packages
import numpy
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Natural Language :: English',
]
setup(
name="simpegEMIP",
version="0.0.13",
packages=find_packages(),
setup_requires=[
'setuptools>=18.0',
'cython',
'numpy'
],
install_requires=[
'numpy>=1.7',
'scipy>=0.13',
'setuptools>=18.0',
'cython',
'pymatsolver>=0.1.1',
'ipython',
'matplotlib',
'properties>=0.5.2',
'vectormath>=0.2.0',
'SimPEG',
'discretize>=0.2.0',
'geoana>=0.0.4',
'simpegEM1D==0.0.18a'
],
ext_modules=[
Extension(
"simpegEMIP.TDEM.getJpol",
sources=["simpegEMIP/TDEM/getJpol.pyx"],
include_dirs=[numpy.get_include()]
)
],
author="Seogi Kang"
)