-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 871 Bytes
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
[tool.mypy]
mypy_path = ["src"]
explicit_package_bases = true
exclude = ["src/idfhub/idf_autocomplete"]
[[tool.mypy.overrides]]
module = "eppy.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "honeybee.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "honeybee_energy.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "ladybug_geometry.*"
ignore_missing_imports = true
[tool.pylint]
ignore = ["idf_autocomplete"]
[tool.pylint.design]
max-locals = 20
max-args = 6
max-positional-arguments = 6
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "idfhub"
version = "0.0.1"
dependencies = [
"eppy",
"honeybee-core",
"honeybee-energy",
"honeybee",
"ladybug-geometry",
"pyyaml"
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["idfhub"]