-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.1 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]
[project]
name = "ingredient_slicer"
authors = [
{name = "Angus Watters", email = "[email protected]"},
]
version = "1.1.29"
description = "Parses unstructured recipe ingredient text into standardized quantities, units, and foods"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
keywords = ["ingredient", "parser", "recipe", "text processing", "food", "cooking", "grocery", "shopping"]
license = {text = "MIT License"}
dependencies = []
requires-python = ">=3.7"
readme = "README.md"
[project.optional-dependencies]
test = [
"pytest",
"pip-tools"
]
dev = ["black"]
[tool.setuptools]
packages = ["ingredient_slicer"]
[tool.setuptools.dynamic]
version = {attr = "ingredient_slicer.__version__"}