-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "semantic-transformers"
version = "0.4.0"
description = "Machine-file extractors and transformers for semantic schema pipelines"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Semantic Dataspace contributors" },
]
keywords = [
"materials science",
"ontology",
"linked data",
"rdf",
"etl",
"parsers",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pandas",
"rdflib",
"pyyaml",
"jsonata-python",
"jsonschema",
]
[project.optional-dependencies]
excel = ["openpyxl"]
dev = ["pytest", "nbmake"]
[project.urls]
Homepage = "https://github.com/Semantic-Dataspace/semantic-transformers"
Repository = "https://github.com/Semantic-Dataspace/semantic-transformers"
"Bug Tracker" = "https://github.com/Semantic-Dataspace/semantic-transformers/issues"
[tool.setuptools.packages.find]
where = ["src"]
# Only ship runtime data (JSON mappings); exclude docs and example files.
[tool.setuptools.package-data]
"semantic_transformers.parsers.characterization.tensile_test.testxpert_iii.de" = ["*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning:rdflib.*",
"ignore::pytest.PytestCollectionWarning",
]