forked from wangsix/vmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
15 lines (14 loc) · 826 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup
setup(name="vmo",
packages=['vmo', 'vmo.VMO', 'vmo.analysis', 'vmo.realtime', 'vmo.VMO.utility', 'vmo.VMO.utility.distances'],
version="0.3.3b",
description="vmo - Variable Markov Oracle in Python",
author="Cheng-i Wang",
author_email='[email protected]',
url='https://github.com/wangsix/vmo',
long_description='vmo is a Python library for time series and symbolic sequence analysis/synthesis in the family '
'of software built around the Factor Oracle and Variable Markov Oracle algorithms. One of the '
'main innovations in vmo is using functions related to Information Dynamics to determine oracle '
'structure and query-matching algorithms.',
license='GNU GPL 3.0'
)