forked from seljaseppala/eu_corpus_compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (25 loc) · 937 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
[tool.poetry]
name = "EU Corpus Compiler"
version = "1.0.1"
description = "EU Regulation Corpus Compiler: A pipeline of Python programs to download EU regulatory documents from the Eur-Lex portal via the CELLAR endpoint using the response of a SPARQL query sent to the EU Sparql endpoint."
authors = ["AlessioNar <[email protected]>", "seljaseppala <[email protected]>"]
license = "EUPL 1.2"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
pandas = "^2.2.3"
spacy = "^3.7.6"
sparqlwrapper = "^2.0.0"
beautifulsoup4 = "^4.12.3"
lxml = "^5.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/seljaseppala/eu_corpus_compiler"
Issues = "https://github.com/seljaseppala/eu_corpus_compiler/issues"