forked from gwdetchar/seismon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·74 lines (61 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) Michael Coughlin (2013)
#
# This file is part of SeisMon
#
# SeisMon is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SeisMon is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SeisMon. If not, see <http://www.gnu.org/licenses/>
"""Setup script for SeisMon
"""
import glob
import os.path
from setuptools import (find_packages, setup)
import tokenize
from utils import version
PACKAGENAME = 'seismon'
VERSION_PY = os.path.join(PACKAGENAME, 'version.py')
# set version information
vcinfo = version.GitStatus()
vcinfo(VERSION_PY)
DESCRIPTION = 'LIGO Seismic activity monitor'
LONG_DESCRIPTION = ''
AUTHOR = 'Michael Coughlin'
AUTHOR_EMAIL = '[email protected]'
LICENSE = 'GPLv3'
# VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386)
VERSION = vcinfo.version
# Indicates if this version is a release version
RELEASE = vcinfo.version != vcinfo.id and 'dev' not in VERSION
# Use the find_packages tool to locate all packages and modules
packagenames = find_packages(exclude=['utils'])
# find all scripts
#scripts = glob.glob('bin/*') + glob.glob('input/*')
scripts = glob.glob('bin/*')
setup(name=PACKAGENAME,
version=VERSION,
description=DESCRIPTION,
scripts=scripts,
packages=packagenames,
package_data={'seismon': ['input/*']},
include_package_data=True,
ext_modules=[],
requires=['gwpy', 'obspy'],
provides=[PACKAGENAME],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
long_description=LONG_DESCRIPTION,
zip_safe=False,
use_2to3=True
)