-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (63 loc) · 1.73 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
[tool.poetry]
name = "aac-articles"
version = "2.0.0"
description = "Articles from the American Alpine Club publications: AAJ and ANAC."
authors = ["ilias-ant <[email protected]>"]
readme = "README.md"
license = "Apache-2.0 license"
repository = "https://github.com/ilias-ant/american-alpine-club-articles"
keywords = ["aac", "accidents", "climbing", "mountaineering", "alpinism"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ilias-ant/american-alpine-club-articles/issues"
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
kaggle = "~1.5.12"
notebook = "~6.5.2"
pandas = "~1.5.1"
Scrapy = "~2.7.1"
opensearch-py = "~2.0.0"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = {extras = ["jupyter"], version = "^22.10.0"}
isort = "^5.10.1"
autoflake = "^1.7.7"
pre-commit = "^2.20.0"
[tool.poetry.scripts]
kaggle_publish_new_dataset = "aac_articles.publishers.kaggle:publish_new_dataset"
kaggle_publish_new_dataset_version = "aac_articles.publishers.kaggle:publish_new_dataset_version"
[tool.black]
line-length = 120
skip-string-normalization = false
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| \.test_coverage
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.bandit]
skips = ["B404", "B602", "B607"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"