-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
84 lines (68 loc) · 1.67 KB
/
setup.cfg
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[mypy]
namespace_packages = True
mypy_path = src
plugins = sqlmypy
[mypy-psutil]
ignore_missing_imports = True
[mypy-alembic]
ignore_missing_imports = True
[mypy-adafruit_dht]
ignore_missing_imports = True
[mypy-board]
ignore_missing_imports = True
[mypy-flask_sqlalchemy]
ignore_missing_imports = True
[mypy-pint]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-webtest]
ignore_missing_imports = True
[flake8]
max-line-length = 88
[metadata]
name = apd.sensors
version = attr: apd.sensors.VERSION
description = APD Sensor package
long_description = file: README.md, CHANGES.md, LICENCE
long_description_content_type = text/markdown
keywords = iot
license = MIT
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find_namespace:
install_requires =
psutil
click
pint
adafruit-circuitpython-dht ; 'arm' in platform_machine
[options.package_data]
apd.sensors = py.typed
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
sensors = apd.sensors.cli:show_sensors
apd.sensors.sensors =
PythonVersion = apd.sensors.sensors:PythonVersion
IPAddresses = apd.sensors.sensors:IPAddresses
CPULoad = apd.sensors.sensors:CPULoad
RAMAvailable = apd.sensors.sensors:RAMAvailable
ACStatus = apd.sensors.sensors:ACStatus
Temperature = apd.sensors.sensors:Temperature
RelativeHumidity = apd.sensors.sensors:RelativeHumidity
[options.extras_require]
webapp = flask
scheduled =
sqlalchemy
alembic
storedapi =
flask-sqlalchemy
python-dateutil