forked from ChristianKuehnel/btlewrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.06 KB
/
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
33
34
35
# -*- coding: utf-8 -*-
"""Python package description."""
from setuptools import setup, find_packages
def readme():
"""Load the readme file."""
with open('README.rst') as readme_file:
return readme_file.read()
setup(
name='btlewrap',
version='0.0.5-dev',
description='wrapper around different bluetooth low energy backends',
url='https://github.com/ChristianKuehnel/btlewrap',
author='Christian Kuehnel',
author_email='christian.kuehnel@gmail.com',
long_description=readme(),
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Hardware :: Hardware Drivers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
packages=find_packages(),
keywords='bluetooth low-energy ble',
zip_safe=False,
extras_require={'testing': ['pytest']},
install_requires=['typing>=3,<4'],
)