Skip to content

Commit b89fd1a

Browse files
committed
small changes on setup.py
1 parent 40be2df commit b89fd1a

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md") as readme_file:
4+
readme = readme_file.read()
5+
36
setup(
47
name='pide',
5-
version='0.1.1',
6-
description='A library for petrophysical interpretation.',
7-
author='Sinan Ozaydin',
8+
version='0.2',
9+
description='A library for petrophysical interpretations of geophysical models.',
10+
author='Sinan Ozaydin, Lu Li, Utpal Singh, Patrice F. Rey, Maria Constanza Manassero',
811
author_email='[email protected]',
912
url='https://github.com/sinanozaydin/pide',
10-
license='MIT',
13+
python_requires=">3.8",
14+
license='GNU Lesser General Public License v3 (LGPLv3)',
1115
packages=find_packages(),
1216
install_requires=[
1317
'numpy',
@@ -18,4 +22,5 @@
1822
'harmonica',
1923
'pyproj'
2024
],
25+
keywords = ['petrophysics', 'geodynamic modelling', 'magnetotelluric', 'electrical conductivity', 'seismic velocity']
2126
)

0 commit comments

Comments
 (0)