-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 956 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'vsr_db_utils',
version = '0.1',
description = 'Utils to export waves for VSR',
long_description = readme(),
url = 'https://github.com/OVSICORI-UNA/vsr_db_utils',
author = 'Leonardo van der Laat',
author_email = '[email protected]',
packages = ['vsr_db_utils'],
install_requires = [
],
scripts = [
'bin/VT-filter-db',
'bin/antelope-catalog',
'bin/check-swarm',
'bin/db-to-lakiy',
'bin/filter-db',
'bin/lakiy-db-stats',
'bin/pick',
'bin/pick-tectonic',
'bin/repick',
'bin/trim',
'bin/trim-noise',
'bin/trim-tectonic',
'bin/txt-to-swarm',
'bin/waves-add-SAC',
],
zip_safe = False
)