-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (45 loc) · 1.3 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
43
44
45
46
47
48
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="bluebees",
version="1.0.10",
description="Bluetooth Mesh Config Tools",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/matheuswhite/bluebees",
author="Matheus White",
author_email="[email protected]",
license="GPL3",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
"Programming Language :: Python :: 3.7",
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"pycryptodome==3.7.3",
"termcolor==1.1.0",
"pyserial==3.4",
"ecdsa==0.13.3",
"ruamel.yaml==0.15.94",
"pyzmq==18.0.1",
"asyncserial==0.1.0",
"pytest==4.5.0",
"codecov==2.0.15",
"pytest-cov==2.7.1",
"click==7.0",
"tqdm==4.32.1",
"dataclasses==0.6"
],
entry_points={
"console_scripts": [
"bluebees=bluebees.__main__:cli",
]
},
)