Skip to content

Commit

Permalink
small changes on setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanozaydin committed May 9, 2024
1 parent 40be2df commit b89fd1a
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
from setuptools import setup, find_packages

with open("README.md") as readme_file:
readme = readme_file.read()

setup(
name='pide',
version='0.1.1',
description='A library for petrophysical interpretation.',
author='Sinan Ozaydin',
version='0.2',
description='A library for petrophysical interpretations of geophysical models.',
author='Sinan Ozaydin, Lu Li, Utpal Singh, Patrice F. Rey, Maria Constanza Manassero',
author_email='sinan.ozaydin@protonmail.com',
url='https://github.com/sinanozaydin/pide',
license='MIT',
python_requires=">3.8",
license='GNU Lesser General Public License v3 (LGPLv3)',
packages=find_packages(),
install_requires=[
'numpy',
Expand All @@ -18,4 +22,5 @@
'harmonica',
'pyproj'
],
keywords = ['petrophysics', 'geodynamic modelling', 'magnetotelluric', 'electrical conductivity', 'seismic velocity']
)

0 comments on commit b89fd1a

Please sign in to comment.