-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 912 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 912 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
31
32
33
34
35
from setuptools import setup, find_packages
__version__ = '0.8'
setup(
name='GPXtools',
version=__version__,
author='Migo Mueller',
author_email='m.mueller@astro.rug.nl',
install_requires=[
'numpy',
'gpxpy',
'geopy',
'stravalib',
'units',
'matplotlib',
'fiona',
'cartopy',
'shapely',
'pyyaml'
],
license='LICENSE.txt',
description='Tools to mess with bicycle GPS tracks.',
keywords = ['GPS', 'GPX', 'bicycle', 'sport'],
packages=['GPXtools'],
classifiers = [
"Programming Language :: Python :: 3.5",
"Operating System :: OS Independent"
#"Intended Audience :: Science/Research/DataAnalysis",
#"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
#"Topic :: Scientific/Engineering"
],
include_package_data=True
)