-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 860 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
import setuptools
setuptools.setup(
name = 'beacondecoder',
packages = ['beacondecoder'],
version = '0.7.7',
license='MIT',
description = 'A Python library for decoding most types of Bluetooth LE Beacons',
author = 'theBASTI0N',
author_email = 'theBASTI0Ncode@gmail.com',
url = 'https://github.com/theBASTI0N/beacon-decoder',
download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.7.7.tar.gz',
keywords = ['BLE', 'decode', 'iot'],
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)