Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OSUG
RESIF
resif_data_reporter
Commits
dbbdc920
Commit
dbbdc920
authored
Oct 07, 2020
by
Jonathan Schaeffer
Browse files
Package and version bump
parent
b79368cd
Changes
4
Hide whitespace changes
Inline
Side-by-side
config.yml.example
View file @
dbbdc920
...
...
@@ -13,7 +13,7 @@ volumes: # list of directories to scan
type: bud
- name: path3
path: /data/other
type:
node
type:
ph5
postgres:
host: postgres-server # Host serving postgres
port: 5432 # Postgres port
...
...
resifdatareporter/__init__.py
View file @
dbbdc920
__version__
=
'0.30.0'
resifdatareporter/resifdatareporter.py
View file @
dbbdc920
...
...
@@ -12,7 +12,7 @@ import psycopg2
import
click
import
h5py
from
fdsnextender
import
FdsnExtender
from
.
import
__version__
from
resifdatareporter
import
__version__
logging
.
basicConfig
(
format
=
'%(asctime)s %(levelname)s: %(message)s'
,
level
=
logging
.
INFO
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
setup.py
View file @
dbbdc920
from
io
import
open
from
setuptools
import
setup
,
find_packages
import
resifdatareporter
with
open
(
'README.md'
,
'r'
,
encoding
=
'utf-8'
)
as
f
:
readme
=
f
.
read
()
setup
(
name
=
'resifdatareporter'
,
version
=
'0.20.0'
,
version
=
resifdatareporter
.
__version__
,
description
=
'Scans the resif data repository and compute metrics. Sends the result in influxdb or postgres'
,
long_description
=
readme
,
long_description_content_type
=
"text/markdown"
,
...
...
@@ -18,11 +19,11 @@ setup(
license
=
'GPL-3.0'
,
packages
=
find_packages
(),
install_requires
=
[
'fdsnextender
>=0.3.2
'
,
'Click
==7.0
'
,
'
python-dateutil==2.7.5
'
,
'
PyYAML==5.1
'
,
'
psycopg2-binary==2.8.5'
,
'fdsnextender'
,
'Click'
,
'
PyYAML
'
,
'
psycopg2-binary
'
,
'
h5py'
],
keywords
=
[
''
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment