-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 962 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "setlr"
version = "1.0.3"
description = "setlr is a tool for Semantic Extraction, Transformation, and Loading."
readme = "README.md"
authors = [
{name = "Jamie McCusker", email = "mccusj@cs.rpi.edu"}
]
keywords = ["rdf", "semantic", "etl"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
]
requires-python = ">=3.8"
dependencies = [
"future",
"cython",
"numpy",
"rdflib>=6.0.0",
"pandas>=0.23.0",
"requests",
"toposort",
"beautifulsoup4",
"jinja2",
"lxml",
"six",
"xlrd",
"ijson",
"click",
"tqdm",
"requests-testadapter",
"python-slugify",
"pyshacl[js]",
]
[project.urls]
Homepage = "http://packages.python.org/setlr"
[project.scripts]
setlr = "setlr:main"
[tool.setuptools]
packages = ["setlr"]
include-package-data = true