This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
forked from cowboy-bebug/app-store-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (60 loc) · 1.47 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "app-store-scraper"
dynamic = ["version"]
description = "Scrape reviews from Apple's App Store"
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
authors = [
{ name = "Eric Lim" },
{ name = "Denis Washington" },
]
keywords = [
"app store",
"ios",
"ios apps",
"podcasts",
"review",
"scraper",
"scraping",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Information Analysis",
"Typing :: Typed",
]
dependencies = [
"urllib3>=2.0.0,<3",
]
[project.urls]
Homepage = "https://github.com/futurice/app-store-scraper"
Source = "https://github.com/futurice/app-store-scraper"
[tool.hatch.version]
path = "src/app_store_scraper/__about__.py"
[tool.hatch.envs.default]
path = ".venv"
dependencies = [
"black",
"faker",
"pytest",
"pytest-httpserver",
"ruff",
]
[tool.hatch.envs.hatch-test]
extra-dependencies = [
"faker",
"pytest-httpserver",
]