-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpyproject.toml
93 lines (86 loc) · 2.43 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
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "camply"
description = "camply, the campsite finder 🏕"
version = "0.13.0"
authors = ["Justin Flannery <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/juftin/camply"
repository = "https://github.com/juftin/camply"
documentation = "https://juftin.github.io/camply"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
keywords = ["recdotgov", "outdoors", "camping", "reservations", "national-parks"]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
PyYAML = ">=5.1,<7.0"
python-dotenv = ">=0.10.4"
pytz = ">=2019.1"
pandas = "~1.3"
requests = ">=2.26.0"
tenacity = ">=5.1.0"
pydantic = ">=1.2,<2.0"
click = ">=8.0.1"
rich = ">=10.0.0"
rich-click = "^1.6.1"
twilio = { version = ">=7.14.0", optional = true }
fake-useragent = "^1.1.1"
ratelimit = "^2.2.1"
[tool.poetry.extras]
twilio = ["twilio"]
all = ["twilio"]
[tool.poetry.group.dev.dependencies]
pytest = ">=5.2"
coverage = { extras = ["toml"], version = ">=6.2" }
flake8 = ">=3.0.0"
tox = "^3.25.1"
mypy = "^0.971"
mkdocs = "^1.4.2"
mkdocs-click = "^0.8.0"
mkdocstrings = { extras = ["python"], version = "^0.19.0" }
mkdocs-material = "^8.5.10"
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.5.0"
mkdocs-section-index = "^0.3.4"
pytest-vcr = "^1.0.2"
pytest-cov = "^4.0.0"
pytest-xdist = "^3.1.0"
ruff = "0.0.238"
[tool.poetry.scripts]
camply = "camply.cli:cli"
[tool.poetry.urls]
Changelog = "https://github.com/juftin/camply/releases"
"Bug Tracker" = "https://github.com/juftin/camply/issues"
Docker = "https://hub.docker.com/r/juftin/camply"
Discussions = "https://github.com/juftin/camply/discussions"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"Q", # flake8-quotes
"B", # flake8-bugbear
"PLE", # pylint
"PLR", # pylint
"PLW", # pylint
"RUF", # ruff
"C90", # mccabe
"I" # isort
]
ignore = [
"E501", # line too long, handled by black
"PLR0913", # Too many arguments to function call
]