forked from winds-mobi/winds-mobi-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.05 KB
/
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
[tool.poetry]
name = "winds-mobi-providers"
description = "Python scripts that get the weather data from different providers and save it in a common format into mongodb."
version = "0.0.0"
authors = ["winds.mobi"]
license = " AGPL-3.0-only"
[tool.poetry.dependencies]
python = "3.10.*"
apscheduler = "3.10.0"
arrow = "1.2.3"
cachetools = "5.2.0"
furl = "2.1.3"
lxml = "4.9.1"
metar = "1.9.0"
mysqlclient = "2.1.1"
pint = "0.19.2"
psycopg2 = "2.9.3"
pyaml = "21.10.1"
pydantic = "1.10.5"
pymongo = "4.2.0"
pyproj = "3.4.0"
redis = "4.3.4"
requests = {extras = ["socks"], version = "2.28.1"}
scikit-learn = "1.1.2"
scipy = "1.9.1"
sentry-sdk = "1.16.0"
tenacity = "8.0.1"
[tool.poetry.group.dev.dependencies]
black = "22.8.0"
flake8 = "5.0.4"
isort = "5.10.1"
pytest = "7.1.3"
python-dotenv = "^0.21.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
force-exclude = '''
^/winds_mobi_provider/uwxutils.py
'''
[tool.isort]
profile = "black"
line_length = 120
skip = ["winds_mobi_provider/uwxutils.py"]