forked from wadey/python-fitbit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
13 lines (12 loc) · 405 Bytes
/
Copy pathsetup.py
File metadata and controls
13 lines (12 loc) · 405 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
fromsetuptoolsimportsetup, find_packages
setup(name="fitbit",
version="0.1",
description="Library for grabbing data from www.fitbit.com",
author="Wade Simmons",
author_email="wade@wades.im",
url="http://github.com/wadey/python-fitbit",
packages=find_packages(),
license="MIT License",
keywords="fitbit",
zip_safe=True)