Skip to content

Commit 3a11b58

Browse files
committed
chore: switch from setuptools to Hatch
1 parent 52fda09 commit 3a11b58

File tree

4 files changed

+62
-42
lines changed

4 files changed

+62
-42
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
venv
1+
# General
2+
.DS_Store
3+
4+
# Python
5+
.venv
26
__pycache__
37
.pytest_cache
48
*.egg-info
9+
dist

pyproject.toml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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"

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)