-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 953 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 953 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
from distutils.core import setup
setup(
name='beebotte',
version='0.5.0',
description='Python library for interfacing with Beebotte',
url='http://beebotte.com',
download_url='https://pypi.python.org/pypi/beebotte/',
author='Beebotte',
author_email='contact@beebotte.com',
maintainer="Bachar Wehbi",
maintainer_email='bwehbi@beebotte.com',
packages=['beebotte'],
install_requires=[
"requests"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='beebotte, api, rest, pubsub, restful, iot, internet of things, device, realtime, connected, websockets',
license='MIT',
)