forked from frawau/aioblescan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.44 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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import setuptools
version = "0.2.7"
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aioblescan_inode",
packages=["aioblescan_inode", "aioblescan_inode.plugins"],
# packages=setuptools.find_packages(),
version=version,
author="François Wautier",
author_email="[email protected]",
description="Scanning Bluetooth for advertised info with asyncio.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="http://github.com/frawau/aioblescan_inode",
keywords=["bluetooth", "advertising", "hci", "ble"],
license="MIT",
install_requires=[],
extras_require={"dev": ["pytest"]},
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={"console_scripts": ["aioblescan_inode=aioblescan_inode.__main__:main"]},
zip_safe=False,
)