-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f533085
commit c0ab3dd
Showing
2 changed files
with
51 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# 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.0', | ||
packages=['PyFWI'], | ||
description='The initial package for seismic FWI', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Amir Mardan', | ||
author_email='mardan.ah69@gmail.com', | ||
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.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", | ||
"pyopencl==2021.2.10", | ||
"matplotlib", | ||
"scipy", | ||
"hdf5storage", | ||
"requests", | ||
"segyio", | ||
"datetime" | ||
], | ||
package_data={ | ||
"PyFWI": ["elastic_velocity.cl"], | ||
}, | ||
zip_safe=False, | ||
python_requires=">=3.10" | ||
|
||
) | ||
|
||
|