-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 1.51 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
[tool.poetry]
name = "soso"
version = "0.2.0"
description = "For creating Science On Schema.Org (SOSO) markup in dataset landing pages to improve data discovery through search engines."
authors = ["Colin Smith <[email protected]>"]
maintainers = ["Colin Smith <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pyshacl = "^0.26.0"
requests = "^2.32.0"
lxml = "^5.0.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
sphinx = "^7.0.0"
sphinx-autoapi = "^3.0.0"
myst-parser = "^3.0.0"
pylint = "^3.0.0"
black = "^24.0.0"
python-semantic-release = "^9.0.0"
[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-public-methods,c-extension-no-member"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"