-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 856 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "solar_path"
version = "0.1.0"
description = "App for visualizing sun's position"
authors = ["vegard ulriksen solberg <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
numpy = "*"
plotly = "*"
pandas = "*"
dash = "*"
dash-bootstrap-components = "*"
pvlib = "*"
geopy = "*"
pydantic-settings = "^2.2.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.13.0"
black = "^21.7b0"
flake8 = "^3.9.2"
flakehell = "^0.9.0"
[tool.isort]
profile = "black"
line_length = 100
[tool.flakehell]
max-line-length = 100
[tool.black]
line-length = 100
target-version = ["py312"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| profiling
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"