Skip to content

Commit b9ca27c

Browse files
committed
before naming mtv-api as sintel
1 parent 062a760 commit b9ca27c

File tree

4 files changed

+38
-18
lines changed

4 files changed

+38
-18
lines changed

mtv/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ password: # for auth
1111
# orion
1212
or_host: 'localhost' # mongodb server address
1313
or_port: 27018 # mongodb server port
14-
or_db: 'orion-stock-test' # database name
14+
or_db: 'orion' # database name
1515
or_username: # for auth
1616
or_password: # for auth
1717

mtv/routes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def redoc():
1818
api = Api(app)
1919

2020
# configure API documentation
21-
2221
Swagger(app, config=swagger_config, template=swagger_tpl, parse=True)
2322

2423
# user management

mtv/swagger.py

Lines changed: 34 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214

215215

216216
swagger_config = {
217-
'title': 'MTV RestAPI Documentation',
217+
'title': 'Sintel RestAPI Documentation',
218218
'uiversion': 3,
219219
'openapi': '3.0.2',
220220
'doc_dir': './apidocs/resources/',
@@ -239,28 +239,48 @@
239239
<i>An open source project from Data to AI Lab at MIT.</i>
240240
</p>
241241
242-
[![Build Status](https://travis-ci.com/dyuliu/mtv.svg?branch=master)]\
243-
(https://travis-ci.com/dyuliu/mtv)
244-
[![Coverage Status](https://coveralls.io/repos/github/dyuliu/MTV/badge.svg)]\
245-
(https://coveralls.io/github/dyuliu/MTV)
246-
[![Github All Releases](https://img.shields.io/github/downloads/dyuliu/MTV/\
247-
total)](https://github.com/dyuliu/MTV/releases)
248-
[![Docker Pulls](https://img.shields.io/docker/pulls/dyuliu/mtv)]\
249-
(https://hub.docker.com/r/dyuliu/mtv)
250-
251-
# What is MTV?
252-
**MTV** (multivariate time series data visuaization) is a visual analytics \
253-
system built for anomaly analysis of multiple time-series data.
242+
# What is Sintel?
243+
**Sintel** (Signal Intelligence) provides Restful APIs to process massive
244+
signal data for anomaly analysis in an efficient and user-friendly way.
245+
To showcase the use of this library, we have built an example visual analytics
246+
system, MTV (multivariate time series visualization) -- which is built upon
247+
Sintel, to support users investigating and annotating time series anomalies
248+
in an very efficient and organized way.
254249
255250
# License
256251
257252
[The MIT License](https://github.com/HDI-Project/MTV/blob/master/LICENSE)
258253
"""
254+
# markdown_text = """
255+
# <p align="left">
256+
# <img width=10% src="https://dai.lids.mit.edu/wp-content/uploads/2018/06/\
257+
# Logo_DAI_highres.png" alt=“DAI-Lab” />
258+
# <i>An open source project from Data to AI Lab at MIT.</i>
259+
# </p>
260+
261+
# [![Build Status](https://travis-ci.com/dyuliu/mtv.svg?branch=master)]\
262+
# (https://travis-ci.com/dyuliu/mtv)
263+
# [![Coverage Status](https://coveralls.io/repos/github/dyuliu/MTV/badge.svg)]\
264+
# (https://coveralls.io/github/dyuliu/MTV)
265+
# [![Github All Releases](https://img.shields.io/github/downloads/dyuliu/MTV/\
266+
# total)](https://github.com/dyuliu/MTV/releases)
267+
# [![Docker Pulls](https://img.shields.io/docker/pulls/dyuliu/mtv)]\
268+
# (https://hub.docker.com/r/dyuliu/mtv)
269+
270+
# # What is MTV?
271+
# **MTV** (multivariate time series data visuaization) is a visual analytics \
272+
# system built for anomaly analysis of multiple time-series data.
273+
274+
# # License
275+
276+
# [The MIT License](https://github.com/HDI-Project/MTV/blob/master/LICENSE)
277+
# """
278+
259279

260280
swagger_tpl = {
261281
'info': {
262282
'description': markdown_text,
263-
'title': 'MTV RestAPI Documentation',
283+
'title': 'Sintel RestAPI Documentation',
264284
'version': '1.0.0'
265285
},
266286
'tags': tags,

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@
9696
'Programming Language :: Python :: 3',
9797
'Programming Language :: Python :: 3.6'
9898
],
99-
description="MTV is a visual analytics system built for satellite data analysis.",
99+
description=("MTV is a visual analytics system built for anomaly analysis"
100+
"for multivariate time series (signals) data"),
100101
entry_points={
101102
'console_scripts': [
102103
'mtv=mtv.cli:main',
@@ -119,7 +120,7 @@
119120
setup_requires=setup_requirements,
120121
test_suite='tests',
121122
tests_require=test_requirements,
122-
url='https://github.com/HDI-Project/MTV',
123+
url='https://github.com/signals-dev/MTV-api',
123124
version='0.1.0-dev',
124125
zip_safe=False,
125126
)

0 commit comments

Comments
 (0)