-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
42 lines (38 loc) · 1.31 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
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
"""Python package description."""
from setuptools import setup, find_packages
from btlewrap.version import __version__ as version
def readme():
"""Load the readme file."""
with open("README.rst") as readme_file:
return readme_file.read()
setup(
name="btlewrap",
version=version,
description="wrapper around different bluetooth low energy backends",
url="https://github.com/ChristianKuehnel/btlewrap",
author="Christian Kuehnel",
author_email="[email protected]",
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(exclude=("test", "test.*")),
keywords="bluetooth low-energy ble",
zip_safe=False,
extras_require={
"testing": ["pytest"],
"bluepy": ["bluepy"],
"pygatt": ["pygatt"],
},
)