-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.56 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 = "oc_ocdm"
version = "9.2.1"
description = "Object mapping library for manipulating RDF graphs that are compliant with the OpenCitations datamodel."
authors = [
"Silvio Peroni <[email protected]>",
"Marilena Daquino <[email protected]>",
"Fabio Mariani <[email protected]>",
"Simone Persiani <[email protected]>",
"Arcangelo Massari <[email protected]>"
]
readme = "README.md"
license = "ISC"
homepage = "https://opencitations.net"
repository = "https://github.com/opencitations/oc_ocdm"
documentation = "https://oc-ocdm.readthedocs.io"
keywords = ["opencitations", "openscience", "datamodel", "mapping"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.8,<3.14"
rdflib = "^6.0.0"
SPARQLWrapper = "2.0.0"
filelock = "^3.6.0"
pyshacl = "0.23.0"
setuptools = "^68.2.2"
redis = "^4.5.5"
tqdm = "^4.66.5"
[tool.poetry.dev-dependencies]
Sphinx = "^4.4.0"
sphinx_rtd_theme = "^1.0.0"
[tool.poetry.group.dev.dependencies]
coverage = "^6.5.0"
coverage-badge = "^1.1.0"
wget = "^3.2"
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
test = 'scripts:main'