-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.01 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.01 KB
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
38
39
40
41
42
# {# pkglts, pysetup.kwds
# format setup arguments
from setuptools import setup, find_packages
short_descr = "Dynamic time warping algorithm(s)"
readme = open('README.md').read()
history = open('HISTORY.rst').read()
# find packages
pkgs = find_packages('src')
setup_kwds = dict(
name='dtw',
version="0.0.1",
description=short_descr,
long_description=readme + '\n\n' + history,
author="Christophe Godin",
author_email="christophe.godin@inria.fr",
url='https://gitlab.inria.fr/mosaic/work-in-progress/dtw',
license='GPL-3.0-or-later',
zip_safe=False,
packages=pkgs,
package_dir={'': 'src'},
setup_requires=[],
install_requires=[],
tests_require=[],
entry_points={},
scripts=[
'src/dtw/bin/romi_compare_to_manual_gt.py',
'src/dtw/bin/align_csv_database.py'
],
keywords='',
test_suite='nose.collector',
)
# #}
# change setup_kwds below before the next pkglts tag
# do not change things below
# {# pkglts, pysetup.call
setup(**setup_kwds)
# #}