forked from agilescientific/bruges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (50 loc) · 1.68 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf 8 -*-
"""
Python installation file.
"""
from setuptools import setup
import re
verstr = 'unknown'
VERSIONFILE = "bruges/_version.py"
with open(VERSIONFILE, "r")as f:
verstrline = f.read().strip()
pattern = re.compile(r"__version__ = ['\"](.*)['\"]")
mo = pattern.search(verstrline)
if mo:
verstr = mo.group(1)
print("Version "+verstr)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
REQUIREMENTS = ['numpy', 'scipy']
CLASSIFIERS = ['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
setup(name='bruges',
version=verstr,
author='Agile Geoscience',
author_email='hello@agilegeoscience.com',
packages=['bruges',
'bruges.attribute',
'bruges.filters',
'bruges.noise',
'bruges.reflection',
'bruges.rockphysics',
'bruges.transform',
'bruges.unit',
'bruges.util',
],
description='Useful geophysics functions',
long_description=open('README.rst').read(),
url='http://pypi.python.org/pypi/bruges/',
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
license='Apache 2',
)