-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 732 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'geoprobe',
version = '0.4.0',
description = "Reads and (partially) writes seismic data in Landmark's Geoprobe format",
author = 'Joe Kington',
author_email = 'joferkington@gmail.com',
license = 'MIT',
url = 'https://github.com/joferkington/python-geoprobe',
packages = find_packages(),
install_requires = ['numpy', 'six'],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
)