Skip to content

Commit

Permalink
fix the bugs for pypi and worked
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirMardan committed Jan 2, 2022
1 parent f533085 commit c0ab3dd
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 29 deletions.
29 changes: 0 additions & 29 deletions setup.cfg

This file was deleted.

51 changes: 51 additions & 0 deletions setup.py
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"

)


0 comments on commit c0ab3dd

Please sign in to comment.