-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 875 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "python_ant_downloader",
version = "git",
author = "Braiden Kindt",
author_email = "[email protected]",
description = "Tools for download from wireless Garmin (ANT) GPS devices.",
url = "https://github.com/braiden/python-ant-downloader",
license = "BSD",
keywords = "ANT Garmin GPS 405 405CX 410",
packages = ["antd"],
package_data = {"antd": ["*.cfg"]},
entry_points = {
'console_scripts': ['ant-downloader = antd.main:downloader']
},
install_requires = [
"distribute",
"argparse",
"lxml",
"pyserial",
"pyusb>=1.0.0a2",
"requests",
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
]
)