-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
25 lines (24 loc) · 903 Bytes
/
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
from setuptools import setup
setup(
name = 'petrophysics',
version = '0.1.3',
author='Mihai',
author_email='m_iorgandopol@yahoo.com',
packages = ['petrophysics',
'petrophysics.clayvolume',
'petrophysics.conversions',
'petrophysics.lithology',
'petrophysics.permeability',
'petrophysics.porosity',
'petrophysics.reserves',
'petrophysics.resistivity',
'petrophysics.rockphysics',
'petrophysics.salinity',
'petrophysics.saturation',
'petrophysics.temperature'],
url='http://pypi.python.org/pypi/petrophysics/',
license = ['MIT'],
description = 'A package containing useful functions for well log interpretation',
long_description=open('README.rst').read(),
install_requires = ['numpy'],
)