forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 875 Bytes
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
[project]
name = "at-html-schemaorg"
version = "0.1.0"
description = "Fork of https://github.com/schemaorg/schemaorg/tree/main"
authors = [
{name = "Conor Fehilly",email = "conor.fehilly@croud.com"}
]
readme = "../README.md"
requires-python = ">=3.11,<4"
dependencies = [
"api (>=0.0.7,<0.0.8)",
"beautifulsoup4 (>=4.10.0,<5.0.0)",
"colorama (>=0.4.4,<0.5.0)",
"Flask (>=2.3.2,<3.0.0)",
"Jinja2 (>=3.1.6,<4.0.0)",
"ordereddict (>=1.1,<2.0)",
"Pygments (>=2.15.0,<3.0.0)",
"rdflib (>=6.1.1,<7.0.0)",
"requests (>=2.32.0,<3.0.0)",
"six (>=1.16.0,<2.0.0)",
"markdown2 (>=2.5.3,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.black]
line-length = 128
target-version = ['py39']
exclude = '''
/(
\.venv
| examples
)/
'''