2016-04-29 11:50:28 +02:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='PyLoT',
|
|
|
|
version='0.1a1',
|
|
|
|
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'],
|
|
|
|
url='dummy',
|
|
|
|
license='LGPLv3',
|
|
|
|
author='Sebastian Wehling-Benatelli',
|
|
|
|
author_email='sebastian.wehling@rub.de',
|
|
|
|
description='Comprehensive Python picking and Location Toolbox for seismological data.'
|
|
|
|
)
|