-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.64 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
[tool.poetry]
name = "time-agnostic-library"
version = "4.6.13"
description = "time-agnostic-library is a Python ≥3.7 library that allows performing time-travel queries on RDF datasets compliant with the OCDM v2.0.1 provenance specification."
authors = ["Arcangelo Massari <[email protected]>"]
readme = "README.md"
license = "ISC"
homepage = "https://github.com/opencitations/time-agnostic-library"
repository = "https://github.com/opencitations/time-agnostic-library"
documentation = "https://time-agnostic-library.readthedocs.io"
keywords = ["rdf", "provenance", "opencitations", "change-tracking", "time-traversal query"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8,<3.14"
python_dateutil = "^2.8.2"
rdflib = "6.3.2"
SPARQLWrapper = "2.0.0"
tqdm = "^4.62.3"
validators = "^0.20.0"
psycopg2 = "^2.9.6"
setuptools = "^68.2.2"
rdflib-ocdm = "^0.4.0"
lxml = "^5.1.0"
[tool.poetry.dev-dependencies]
chardet = "^4.0.0"
sphinx-autodoc-defaultargs = "^0.1.2"
sphinx-material = "^0.0.35"
wget = "^3.2"
requests = "^2.27.1"
psutil = "^5.9.0"
coverage = "^6.4.4"
coverage-badge = "^1.1.0"
[tool.poetry.group.dev.dependencies]
tqdm = "^4.65.0"
pebble = "^5.0.3"
rdflib-ocdm = "^0.4.0"
autopep8 = "^2.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
test = 'tests.run_all_tests:main'