-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
80 lines (74 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "raif_hack"
version = "0.1.0"
description = "Zvezdochka team. Raifhack DS 2021. Commercial Real estate price prediction"
authors = ["Zvezdochka team"]
[tool.poetry.dependencies]
python = "3.8.9"
pandas = "^1.3.2"
numpy = "^1.20.3"
sklearn = "^0.0"
seaborn = "^0.11.2"
matplotlib = "^3.4.3"
scipy = "^1.7.1"
lightgbm = "^3.2.1"
catboost = "^0.26.1"
xgboost = "^1.4.2"
tqdm = "^4.62.2"
torch = "^1.9.0"
transformers = "^4.10.2"
pytorch-lightning = "^1.4.6"
pytest-cython = "^0.1.1"
hydra-core = "^1.1.1"
optuna = "^2.9.1"
plotly = "^5.3.1"
python-dotenv = "^0.19.0"
Cython="*"
networkx = "^2.6.3"
osmnx = "^1.1.1"
geopy = "^2.2.0"
pytorch-tabnet = "^3.1.1"
faiss-gpu = "^1.7.1"
numba = "^0.54.0"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
flake8 = "^3.9.2"
isort = "^5.9.3"
autoflake = "^1.4"
pytest = "^6.2.5"
pre-commit = "^2.15.0"
black = "^21.8b0"
poethepoet = "^0.10.0"
notebook = "^6.4.4"
ipywidgets = "^7.6.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 120
src_paths = ["raif_hack", "tests"]
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.venv
| build
| dist
| notebooks
| data
)/
'''
[tool.mypy]
python_version = 3.8
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
files = "raif_hack/"