-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
executable file
·45 lines (38 loc) · 1005 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python
try:
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
pass
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "GcpUploader",
version = "2015.02.28",
author = "David E. Lotton",
author_email = "[email protected]",
description = "A tool to upload FIT, GPX, and TCX files to the Garmin Connect web site.",
url = "http://sourceforge.net/projects/gcpuploader/",
license = "GPL",
keywords = "GARMIN CONNECT GPS TCX GPX FIT UPLOAD UPLOADER",
package_dir = {'': 'lib'},
scripts = ["gupload.py"],
py_modules = ['ez_setup', 'UploadGarmin'],
install_requires = [
"logging",
"simplejson",
"requests",
"argparse",
"ConfigParser",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Utilities",
],
)