-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.42 KB
/
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
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
# SPDX-FileCopyrightText: 2022 UdS AES <https://www.uni-saarland.de/lehrstuhl/frey.html>
#
# SPDX-License-Identifier: CC0-1.0
# https://github.com/psf/black/blob/master/pyproject.toml
# Example configuration for Black
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.poetry]
name = "fmi2rdf"
version = "0.1.0-beta.1"
description = "Extract triples about Functional Mock-up Units (FMUs) in Resource Description Framework (RDF)"
authors = ["Moritz Stüber <moritz.stueber@aut.uni-saarland.de>"]
license = "MIT"
readme = "README.adoc"
repository = "https://github.com/UdSAES/fmi2rdf"
keywords = ["FMI", "FMU", "RDF"]
[tool.poetry.dependencies]
python = "^3.10"
invoke = "^1.6.0"
rdflib = "^6.0.2"
requests = "^2.26.0"
loguru = "^0.5.3"
FMPy = "^0.3.2"
PyYAML = "^6.0"
pydash = "^5.1.0"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
pytest = "^6.2.5"
black = "^22.1.0"
reuse = "^0.14.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"