-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
50 lines (45 loc) · 1.02 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
[metadata]
name = pyRAPL
version = attr: pyRAPL.__version__
description =
long_description = file: README.md, LICENSE
long_description_content_type= text/markdown
keywords = energy
platform = linux
author = Chakib Belgaid, Arthur d'Azémar, Guillaume Fieni, Romain Rouvoy
author_email = powerapi-staff@inria.fr
license = MIT License
classifiers =
Programming Language :: Python :: 3.7
License :: OSI Approved :: MIT License
project_urls =
Homepage = http://powerapi.org/
Source = https://github.com/powerapi-ng/pyRAPL
[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 =
tests_require =
pytest >=3.9.2
pyfakefs >= 3.6
mock >=2.0
[options.extras_require]
docs =
sphinx >=1.8.1
sphinx-autodoc-typehints >=1.6.0
mongodb =
pymongo >= 3.9.0
pandas =
pandas >= 0.25.1
[aliases]
test = pytest
[bdist_wheel]
universal = true
[flake8]
max-line-length = 160
ignore = W504