-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathsetup.py
36 lines (25 loc) · 1.09 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
#!/usr/bin/env python
from importlib.machinery import SourceFileLoader
from setuptools import setup, find_packages
version = SourceFileLoader('dtw.version', 'dtw/version.py').load_module()
long_description = '''
Dtw is a Python Module for computing Dynamic Time Warping distance. It can be used as a similarity measured between temporal sequences.
More info can be found at: https://github.com/pierre-rouanet/dtw
It is compatible with Python 2.7-3.6 and is distributed under the GPLv3 license.
'''
setup(name='dtw',
version=version.version,
description='Python DTW Module',
long_description=long_description,
author='Pierre Rouanet',
author_email='pierre.rouanet@gmail.com',
url='https://github.com/pierre-rouanet/dtw',
license='GNU GENERAL PUBLIC LICENSE Version 3',
packages=find_packages(exclude=["tests"]),
install_requires=['numpy', 'scipy'],
test_suite='tests',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering", ],
)