Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# Local App Config
/.venv
/venv
.python-version

# Common OS, Tool and Editor Files
.*.sw*
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pypy-3.11
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ data used by the National Library of Sweden.

## Dependencies

Requires Python 3.7+. (Use PyPy for a general speed improvement.)
Requires Python 3.9+. (Use PyPy for a general speed improvement.)

If you have [uv](https://github.com/astral-sh/uv) installed, just prepend
`uv run` to the commands under "Usage" and skip the following. Otherwise:

Preferably set up a virtualenv:

Expand Down
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[project]
name = "definitions"
version = "0.1.0" # This is currently a fixed dummy version.
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"markdown==3.7",
"pyrdfa3==3.5.3",
"rdflib==6.1.1",
"requests==2.32.3",
"setuptools==70.0.0",
]
Loading