This repository was archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
60 lines (53 loc) · 1.82 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
55
56
57
58
59
60
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""
seishub.plugins.seismology installer
:copyright:
Robert Barsch ([email protected])
:license:
GNU Lesser General Public License, Version 3
(http://www.gnu.org/copyleft/lesser.html)
"""
from setuptools import find_packages, setup
import os
VERSION = open(os.path.join("seishub", "plugins", "seismology",
"VERSION.txt")).read()
setup(
name='seishub.plugins.seismology',
version=VERSION,
description="Seismology package for SeisHub.",
long_description="""
seishub.plugins.seismology - Seismology package for SeisHub.
For more information visit http://www.seishub.org.
""",
url='http://www.seishub.org',
author='Robert Barsch',
author_email='[email protected]',
license='GNU Lesser General Public License, Version 3 (LGPLv3)',
platforms='OS Independent',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: ' + \
'GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
keywords=['SeisHub', 'seismology'],
packages=find_packages(),
namespace_packages=['seishub', 'seishub.plugins'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'seishub.core',
],
download_url="https://github.com/barsch/seishub.plugins.seismology/zipball/master#egg=seishub.plugins.seismology-dev",
entry_points={'seishub.plugins': [
'seishub.plugins.seismology = seishub.plugins.seismology', ]
},
)