|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "app-store-scraper" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Scrape reviews from Apple's App Store" |
| 9 | +readme = "README.md" |
| 10 | +license = "MIT" |
| 11 | +requires-python = ">=3.6" |
| 12 | +authors = [ |
| 13 | + { name = "Eric Lim" }, |
| 14 | + { name = "Denis Washington" }, |
| 15 | +] |
| 16 | +keywords = [ |
| 17 | + "app store", |
| 18 | + "ios", |
| 19 | + "ios apps", |
| 20 | + "podcasts", |
| 21 | + "review", |
| 22 | + "scraper", |
| 23 | + "scraping", |
| 24 | +] |
| 25 | +classifiers = [ |
| 26 | + "License :: OSI Approved :: MIT License", |
| 27 | + "Operating System :: OS Independent", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.6", |
| 30 | + "Programming Language :: Python :: 3.7", |
| 31 | + "Programming Language :: Python :: 3.8", |
| 32 | + "Programming Language :: Python :: 3.9", |
| 33 | + "Programming Language :: Python :: 3.10", |
| 34 | + "Programming Language :: Python :: 3.11", |
| 35 | + "Intended Audience :: Developers", |
| 36 | + "Topic :: Internet :: WWW/HTTP", |
| 37 | + "Topic :: Scientific/Engineering :: Information Analysis", |
| 38 | +] |
| 39 | +dependencies = [ |
| 40 | + "requests>=2.23.0,<3", |
| 41 | +] |
| 42 | + |
| 43 | +[project.urls] |
| 44 | +Homepage = "https://github.com/futurice/app-store-scraper" |
| 45 | +Source = "https://github.com/futurice/app-store-scraper" |
| 46 | + |
| 47 | +[tool.hatch.version] |
| 48 | +path = "app_store_scraper/__version__.py" |
| 49 | + |
| 50 | +[tool.hatch.build.targets.sdist] |
| 51 | +include = [ |
| 52 | + "/app_store_scraper", |
| 53 | +] |
| 54 | + |
| 55 | +[tool.hatch.envs.default] |
| 56 | +path = ".venv" |
0 commit comments