-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (64 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 69.0",
"setuptools_scm[toml] >= 6.2",
"wheel >= 0.42",
]
[tool.setuptools]
packages = [ "bwyd" ]
[tool.setuptools_scm]
# required section; empty contents is fine
[project.urls]
code = "https://github.com/DerwenAI/bwyd"
[project]
name = "bwyd"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
description = "The seed crazy idea behind the scenes here is to consider how human cooks behave somewhat like robots, following recipes as instructions."
dynamic = [
"version"
]
authors = [
{ name = "derwen.ai", email = "info@derwen.ai" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"icecream >= 2.1",
"jupyterlab >= 4.1",
"textX >= 4.0",
]
[project.optional-dependencies]
dev = [
"build >= 1.0",
"Flask >= 3.0",
"mkdocs-git-revision-date-plugin >= 0.3",
"mkdocs-material >= 9.5",
"mknotebooks >= 0.8",
"pre-commit >= 3.6",
"selenium >= 4.16",
"twine >= 4.0",
]
test = [
"deepdiff >= 6.7",
"pytest >= 8.0",
]