2016-05-03 08:46:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2016-04-29 11:50:28 +02:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='PyLoT',
|
2017-09-21 15:59:34 +02:00
|
|
|
version='0.2',
|
2016-04-29 11:50:28 +02:00
|
|
|
packages=['pylot', 'pylot.core', 'pylot.core.loc', 'pylot.core.pick',
|
2016-05-01 21:10:30 +02:00
|
|
|
'pylot.core.io', 'pylot.core.util', 'pylot.core.active',
|
2016-04-29 11:50:28 +02:00
|
|
|
'pylot.core.analysis', 'pylot.testing'],
|
2017-09-18 10:41:27 +02:00
|
|
|
requires=['obspy', 'PySide', 'matplotlib', 'numpy'],
|
2016-04-29 11:50:28 +02:00
|
|
|
url='dummy',
|
|
|
|
license='LGPLv3',
|
|
|
|
author='Sebastian Wehling-Benatelli',
|
|
|
|
author_email='sebastian.wehling@rub.de',
|
|
|
|
description='Comprehensive Python picking and Location Toolbox for seismological data.'
|
|
|
|
)
|