forked from publysher/rdflib-django
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.33 KB
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
[tool.poetry]
name = "rdflib-django3"
description = "Store implementation for RDFlib using Django models as its backend (fork)"
version = "0.0"
license = "MIT"
authors = ["Alexander K <devkral@web.de>", "Yigal Duppen <yigal@publysher.nl>"]
readme = "README.md"
repository = "http://github.com/devkral/rdflib-django3"
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
packages = [{include = 'rdflib_django'}]
[tool.poetry.plugins."rdf.plugins.store"]
Django = 'rdflib_django.store:DjangoStore'
[tool.black]
line-length = 79
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
dirty = true
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
django = ">=3.0"
rdflib = ">=3.2.1"
[tool.poetry.group.test.dependencies]
tox = "*"
coverage = "*"
[tool.poetry.group.dev.dependencies]
django = ">=4.2"
poetry-dynamic-versioning = {extras = ["plugin"], version = "*"}
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"