forked from powerapi-ng/powerapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (53 loc) · 1.36 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
[metadata]
name = powerapi
version = attr: powerapi.__version__
description = PowerAPI is a middleware toolkit for building software-defined power meters.
long_description = file: README.md, LICENSE
long_description_content_type= text/markdown
keywords = energy, powerapi, power meter
platform = any
author = Guillaume Fieni, Arthur d'Azémar, Jordan Bouchoucha, Romain Rouvoy
author_email = [email protected]
license = BSD 3-Clause License
classifiers =
Programming Language :: Python :: 3.7
License :: OSI Approved :: BSD License
project_urls =
Homepage = http://powerapi.org/
Documentation = https://powerapi.readthedocs.io
Source = https://github.com/powerapi-ng/powerapi
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.7
packages = find:
test_suite = tests
setup_requires =
pytest-runner >=3.9.2
install_requires =
numpy >=1.11.O
thespian == 3.10.0
tests_require =
pytest >=3.9.2
pytest-asyncio >=0.14.0
pytest-timeout >= 1.4.2
libvirt-python >= 4.0
mock >=2.0
[options.extras_require]
mongodb =
pymongo >=3.7.2
libvirt =
libvirt-python >= 4.0
influxdb =
influxdb >=2.12
opentsdb =
opentsdb-py >= 0.6.0
prometheus =
prometheus-client >= 0.9.0
docs =
sphinx >=1.8.1
sphinx-autodoc-typehints >=1.6.0
[aliases]
test = pytest
[bdist_wheel]
universal = true