-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
93 lines (73 loc) · 1.78 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
85
86
87
88
89
90
91
92
93
[mypy]
namespace_packages = True
mypy_path = src
plugins = sqlmypy
[mypy-alembic]
ignore_missing_imports = True
[mypy-alembic.config]
ignore_missing_imports = True
[mypy-alembic.script]
ignore_missing_imports = True
[mypy-alembic.runtime.environment]
ignore_missing_imports = True
[mypy-matplotlib]
ignore_missing_imports = True
[mypy-matplotlib.axes._base]
ignore_missing_imports = True
[mypy-matplotlib.figure]
ignore_missing_imports = True
[mypy-matplotlib.pyplot]
ignore_missing_imports = True
[mypy-IPython.core]
ignore_missing_imports = True
[mypy-yappi]
ignore_missing_imports = True
[mypy-pint]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-setuptools]
ignore_missing_imports = True
[flake8]
max-line-length = 120
ignore = E501,E712
[metadata]
name = apd.aggregation
version = attr: apd.aggregation.VERSION
description = A programme that queries apd.sensor endpoints and aggregates their results.
long_description = file: README.md, CHANGES.md, LICENCE
long_description_content_type = text/markdown
keywords =
license = BSD
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 =
sqlalchemy
aiohttp
pint
psycopg2
alembic
click
typing_extensions
[options.package_data]
apd.aggregation = py.typed
[options.extras_require]
jupyter =
ipywidgets
matplotlib
yappi = yappi
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
collect_sensor_data = apd.aggregation.cli:collect_sensor_data
sensor_deployments = apd.aggregation.cli:deployments
run_apd_actions = apd.aggregation.cli:run_actions