-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 945 Bytes
/
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
#
# Author: sascha_lammers@gmx.de
#
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='INA3221 Power Monitor',
version="0.0.3",
author="Sascha Lammers",
author_email="sascha_lammers@gmx.de",
packages=setuptools.find_packages(),
url='https://github.com/sascha432/RPi.power-monitor',
description='Power Monitor for the INA3221 sensor with headless mode, TCP server/client and tkinter GUI running on Linux/Raspberry Pi and Windows',
# long_description=open('README.md').read(),
install_requires=[
"numpy>=1.19.4",
"smbus>=1.1.post2",
"matplotlib>=3.3.1",
"commentjson>=0.9.0",
"paho-mqtt>=1.5.1",
"colorlog>=4.6.2",
"influxdb>=5.3.1",
"beeprint>=2.4.10"
],
# dependency_links=[
# "git+git://github.com/Peter92/unit-convert.git"
# ],
include_package_data=True,
)