forked from boneIO-eu/app_black
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.77 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
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("boneio/version.py") as f:
exec(f.read())
setup(
name="boneio",
version=__version__, # type: ignore # noqa: F821,
description="Python App for BoneIO",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/boneIO-eu/app_bbb",
download_url="https://github.com/boneIO-eu/app_bbb/archive/{}.zip".format(
__version__ # type: ignore # noqa: F821
),
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
license="GNU General Public License v3.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=[
"Adafruit-BBIO==1.2.0",
"Adafruit-Blinka==6.20.4",
"adafruit-circuitpython-mcp230xx==2.5.3",
"adafruit-circuitpython-mcp9808==3.3.10",
"adafruit-circuitpython-pct2075==1.1.12",
"adafruit-circuitpython-register==1.9.8",
"adafruit-circuitpython-busdevice==5.1.4",
"Adafruit-PlatformDetect==3.19.5",
"Adafruit-PureIO==1.1.9",
"asyncio-mqtt==0.12.1",
"Cerberus==1.3.4",
"colorlog==6.6.0",
"gpio==0.3.0",
"luma.core==2.3.1",
"luma.oled==3.8.1",
"Pillow==9.0.1",
"paho-mqtt==1.6.1",
"psutil==5.9.0",
"pyaml==21.10.1",
"pymodbus==2.5.3",
"pyserial-asyncio==0.6",
"typing_extensions==4.1.0",
],
entry_points={"console_scripts": ["boneio=boneio.bonecli:main"]},
)