forked from emenendez/gpxutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (41 loc) · 1.55 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='gpxutils',
version='3.0.0',
description='Tools for working with GPX files',
long_description="""
gpxutils
========
Tools for working with GPX files.
gpxclean
--------
Clean GPX tracks and split into multiple files.
gpxpull
-------
Pull files from modern Garmin GPSes, clean, and split. On Windows, with the help of the USB Drive Letter Manager (http://www.uwe-sieber.de/usbdlm_e.html), gpxpull can automatically download and clean GPX files from a USB-connected Garmin GPS.
""",
url='https://github.com/emenendez/gpxutils',
author='Eric Menendez',
author_email='[email protected]',
license='AGPLv3+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Topic :: Utilities',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3.4',
],
keywords='gpx gps geo spatial utilities',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['gpxpy'],
entry_points={
'console_scripts': [
'gpxclean=gpxutils.gpxclean:main',
'gpxpull=gpxutils.gpxpull:main',
],
},
)