-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
53 lines (48 loc) · 1.63 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
# from distutils.core import setup
from setuptools import setup
from setuptools.extension import Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='PyFWI',
version='0.1.10',
packages=['PyFWI'],
description='PyFWI is a Pyhton package for seismic FWI and reservoir monitoring',
long_description=long_description,
long_description_content_type="text/markdown",
author='Amir Mardan',
author_email='[email protected]',
url = 'https://github.com/AmirMardan/PyFWI',
project_urls={
"Bug Tracker": "https://github.com/AmirMardan/PyFWI/issues",
},
classifiers=[
'Intended Audience :: Education',
'Programming Language :: C',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
],
package_dir={"": "src"},
install_requires=[
"setuptools>=42",
"wheel",
"numpy",
"matplotlib",
"scipy",
"hdf5storage",
"requests",
"datetime"
],
package_data={
"PyFWI": ["elastic.cl",
"elastic_crosswell.cl",
"elastic_surface.cl"
],
},
zip_safe=False,
python_requires=">=3.7"
)