-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.54 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
[tool.poetry]
name = "spinneret"
version = "0.3.0"
description = "For integrating EDI into the Semantic Web"
authors = ["Colin Smith <[email protected]>"]
maintainers = ["Colin Smith <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
rdflib = "^7.0.0"
lxml = "^5.3.0"
soso = {git = "https://github.com/clnsmth/soso.git", rev = "main"}
ontogpt = "^1.0.6"
daiquiri = "^3.2.5.1"
matplotlib = "^3.10.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
sphinx = "^8.0.2"
sphinx-autoapi = "^3.2.1"
myst-parser = "^4.0.0"
pylint = "^3.2.6"
black = "^24.8.0"
python-semantic-release = "^9.8.7"
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"] # version location
branch = "main" # branch to make releases of
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-convert GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = false # patch release by default
[tool.semantic_release.changelog]
template_dir = "docs/source/_templates/" # changelog template directory
[tool.pylint.'MESSAGES.CONTROL']
disable = "too-many-arguments,c-extension-no-member"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"