-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (29 loc) · 997 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 setuptools import setup, find_packages
import platform
system = platform.system()
requirements = []
if system == "Darwin":
requirements.append("pyobjc-core")
requirements.append("pyobjc-framework-Cocoa")
elif system == "Linux":
pass
else:
# windows
pass
versionStr = "0.3.0"
setup(
name="PyBLEWrapper",
version=versionStr,
# description="Python Bluetooth Smart(BLE) manager wrapper for OSX, Linux and Windows 8",
description="Python Bluetooth Smart(BLE) manager wrapper for OSX",
author="Brett Chien",
author_email="[email protected]",
license="MIT",
url="https://github.com/brettchien/PyBLEWrapper",
download_url='https://github.com/brettchien/PyBLEWrapper/tarball/' + versionStr,
packages=find_packages(exclude="tests"),
install_requires=requirements,
keywords = ['Bluetooth Low Energy', 'BLE', 'OSX'],
classifiers = [],
)