-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 800 Bytes
/
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
# flake8: noqa
from setuptools import setup
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path('gps_track_clustering/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(name = 'gps_track_clustering',
version = main_ns['__version__'],
description = 'Clustering of GPS tracks',
keywords = 'GPS gpx track cluster clustering route routes',
url = None,
author = 'Jonathan Schubert',
author_email = None,
license = None,
packages = ['gps_track_clustering'],
install_requires = [
'geojson',
'sklearn',
'geopy',
'gpxpy',
],
zip_safe = False)