-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (44 loc) · 1021 Bytes
/
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
[tool.poetry]
name = "vocexcel"
version = "0.9.0"
description = """Another Excel to RDF converter for SKOS vocabs, \
but one that include profile-based validation of results."""
authors = ["Nicholas Car <nick@kurrawong.ai>"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
openpyxl = "^3.0.9"
rdflib = "^7.0.0"
pydantic = "^1.9.0"
pyshacl = "^0.18.1"
dateutils = "^0.6.12"
colorama = "^0.4.4"
Pillow = "^9.1.0"
pytest = "^7.2.0"
setuptools = "^62.3.2"
pipdeptree = "^2.3.3"
jinja2 = "^3.1.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
black = "^22.1.0"
[tool.poetry.group.web.dependencies]
uvicorn = "^0.22.0"
python-multipart = "^0.0.6"
fastapi = "^0.104.1"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.0"
httpx = "^0.24.1"
ruff = "^0.0.277"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
vocexcel = "vocexcel.convert:main"
[tool.ruff]
select = [
"I001",
"I002"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]