-
Notifications
You must be signed in to change notification settings - Fork 528
/
pyproject.toml
59 lines (54 loc) · 1.77 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "recipe_scrapers"
description = "Python package, scraping recipes from all over the internet"
authors = [
{name = "Hristo Harsev", email = "[email protected]"},
{name = "James Addison", email = "[email protected]"},
]
maintainers = [
{name = "James Addison", email = "[email protected]"},
]
urls = {Homepage = "https://github.com/hhursev/recipe-scrapers/"}
keywords = ["python", "recipes", "scraper", "harvest", "recipe-scraper", "recipe-scrapers"]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version", "readme"]
requires-python = ">= 3.9"
dependencies = [
"beautifulsoup4 >= 4.12.3",
"extruct >= 0.17.0",
"isodate >= 0.6.1",
]
[project.optional-dependencies]
dev = [
"coverage >=7.4.4",
"types-beautifulsoup4>=4.12.0",
"importlib-metadata>=4.6 ; python_version < '3.10'",
]
online = [
"requests >= 2.31.0",
]
[tool.setuptools.packages.find]
include = ["recipe_scrapers", "recipe_scrapers.*"]
exclude = ["tests", "tests.*"]
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
version = {attr = "recipe_scrapers.__version__.__version__"}
[tool.setuptools.package-data]
recipe_scrapers = ["py.typed"]