forked from google/beacon-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 795 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pbapi',
version='0.1',
description='Command line utilities for the Google Proximity Beacon API',
long_description=readme(),
url='http://github.com/google/beacon-platform',
author='Andrew Fitz Gibbon',
author_email='afitzgibbon@google.com',
license='Apache Software License',
packages=['pbapi'],
install_requires=[
'google-api-python-client>=1.5.4',
'httplib2>=0.9.2',
'oauth2client>=2.0.1',
'simplejson>=3.8.2',
'six>=1.10.0'
],
entry_points={
'console_scripts': ['pb-cli=pbapi.command_line:main'],
},
include_package_data=True,
zip_safe=False)