-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 946 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
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "instagram-hashtag-crawler"
version = "2.0.0"
description = "Instagram hashtag crawler using instaloader"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Simon Seo", email = "simonseo.doubles@gmail.com" },
]
dependencies = [
"instaloader>=4.10",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.4",
"pre-commit>=3.0",
]
browser = [
"browser_cookie3>=0.19",
]
[project.scripts]
instagram-hashtag-crawler = "instagram_hashtag_crawler.cli:main"
instagram-hashtag-export = "instagram_hashtag_crawler.export:main"
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "SIM", "N"]
[tool.ruff.lint.isort]
known-first-party = ["instagram_hashtag_crawler"]
[tool.pytest.ini_options]
testpaths = ["tests"]