-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
50 lines (41 loc) · 1.08 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 = ambient
description = A package for building engineering physics
long_description = file:README.rst
long_description_content_type = text/x-rst
keywords = building engineering physics, psychrometrics
license = Apache License 2.0
classifiers =
Topic :: Scientific/Engineering :: Physics
License :: OSI Approved :: Apache Software License
[options]
packages = find:
python_requires = >=3.7
setup_requires =
setuptools_scm
install_requires =
numpy
scipy
networkx
[options.extras_require]
docs = sphinx>2.0.0
[pycodestyle]
# E203: Whitespace before ':'
# W503: Line break before binary operator
max-line-length = 88
ignore = E203, W503
[pydocstyle]
# D413: Missing blank line after last section
add_ignore = D413
convention = google
[pylint.MASTER]
disable = C0330, W0511
[pylint.IMPORTS]
ignored-modules = numpy, scipy, networkx
[pylint.DESIGN]
# Maximum number of arguments for function / method.
max-args = 10
# Minimum number of public methods for a class (see R0903).
min-public-methods = 1
# Maximum number of instance attributes
max-attributes = 12