-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 803 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 803 Bytes
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
"""
Setup script
"""
import os
from distutils.core import setup
def read(filename):
""" Reads file
"""
return open(os.path.join(os.path.dirname(__file__), filename)).read()
VERSION = '0.4.6'
setup(
name='tracktotrip',
packages=['tracktotrip'],
version=VERSION,
description='Track processing library',
author='Rui Gil',
author_email='ruipgil@gmail.com',
url='https://github.com/ruipgil/TrackToTrip',
download_url='https://github.com/ruipgil/TrackToTrip/releases/tag/%s' % VERSION,
keywords=['track', 'trip', 'GPS', 'GPX'],
classifiers=[],
scripts=[
'scripts/tracktotrip_util',
'scripts/tracktotrip_build_classifier',
'scripts/tracktotrip_geolife_dataset'
],
install_requires=read('requirements.txt').split('\n')
)