Skip to content

Commit

Permalink
Added Python packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpaul committed Oct 15, 2016
1 parent 3ac5717 commit fd5bc13
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include License.md
include README.md
recursive-include src *.h
82 changes: 82 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
#!/usr/bin/env python

from distutils.core import setup, Extension

_segyio = Extension('segyio._segyio',
sources=['python/segyio/_segyio.c', 'src/segyio/segy.c', 'src/spec/segyspec.c'],
include_dirs=['src'])

long_description = """
=======
SEGY IO
=======
Introduction
------------
Segyio is a small LGPL licensed C library for easy interaction with SEG Y
formatted seismic data, with language bindings for Python and Matlab. Segyio is
an attempt to create an easy-to-use, embeddable, community-oriented library for
seismic applications. Features are added as they are needed; suggestions and
contributions of all kinds are very welcome.
Feature summary
---------------
* A low-level C interface with few assumptions; easy to bind to other
languages.
* Read and write binary and textual headers.
* Read and write traces, trace headers.
* Easy to use and native-feeling python interface with numpy integration.
Project goals
-------------
Segyio does necessarily attempt to be the end-all of SEG-Y interactions;
rather, we aim to lower the barrier to interacting with SEG-Y files for
embedding, new applications or free-standing programs.
Additionally, the aim is not to support the full standard or all exotic (but
correctly) formatted files out there. Some assumptions are made, such as:
* All traces in a file are assumed to be of the same sample size.
* It is assumed all lines have the same number of traces.
The writing functionality in Segyio is largely meant to *modify* or adapt
files. A file created from scratch is not necessarily a to-spec SEG-Y file, as
we only necessarily write the header fields segyio needs to make sense of the
geometry. It is still highly recommended that SEG-Y files are maintained and
written according to specification, but segyio does not mandate this.
"""

setup(name='SegyIO',
version='1.0.2',
description='IO library for SEG-Y files',
long_description=long_description,
author='Statoil ASA',
author_email='[email protected]',
url='https://github.com/Statoil/SegyIO',
packages=['segyio'],
package_dir={'': 'python'},
package_data={'': ['License.md']},
license='LGPL-3.0',
ext_modules=[_segyio],
platforms='any',
requires=['numpy'],
install_requires=['numpy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: C',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'
]
)

0 comments on commit fd5bc13

Please sign in to comment.