-
Notifications
You must be signed in to change notification settings - Fork 714
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 970 Bytes
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
# % if cookiecutter.crawler_type.startswith('playwright')
# % set extras = ['playwright']
# % else
# % set extras = [cookiecutter.crawler_type]
# % endif
# % if cookiecutter.http_client == 'curl-impersonate'
# % do extras.append('curl-impersonate')
# % elif cookiecutter.http_client == 'httpx'
# % do extras.append('httpx')
# % endif
[project]
name = "{{cookiecutter.project_name}}"
version = "0.0.1"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"crawlee[{{ extras|join(',') }}]",
# % if cookiecutter.crawler_type == 'playwright-camoufox'
"camoufox[geoip]~=0.4.5",
# % endif
# % if cookiecutter.enable_apify_integration
"apify",
# % endif
]
# % if cookiecutter.package_manager == 'poetry'
[tool.poetry]
package-mode = false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
# % endif