-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (37 loc) · 1.18 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
"""
Setup module.
"""
from setuptools import setup
from hcconfig import __version__
setup(
name='hcconfig',
version=__version__,
description='Configure HC-05, HC-06 and other Bluetooth modules easily',
long_description='''This tool allows you to easily configure HC-05,
HC-06 and other Bluetooth modules easily through the serial port.''',
url='https://github.com/Bulebots/hcconfig',
author='Miguel Sánchez de León Peque',
author_email='[email protected]',
license='BSD License',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='hcconfig bluetooth configuration hc-05 hc-06 hc-0x',
entry_points={
'console_scripts': [
'hcconfig = hcconfig.interface:run',
],
},
packages=['hcconfig'],
install_requires=[
'click',
'pyserial',
],
)