-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 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
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "provenaclient"
version = "0.23.0"
description = "A client library for interfacing with a Provena instance."
authors = ["RRAP <[email protected]>"]
license = "None"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27.0"
pydantic = "<2.0"
python-jose = "<3.3.0"
provena-interfaces = "^2.9.1"
boto3 = "1.27.1"
cloudpathlib = { extras = ["s3"], version = "0.15.1" }
requests = "^2.26.0"
[tool.poetry.dev-dependencies]
mypy = "<1.9.0"
pytest = "<8.1.1"
pytest-httpx = "<=0.30.0"
pytest-asyncio = "<=0.23.7"
python-semantic-release = "<9.4.0"
pytest-cov = "<5.0.0"
myst-nb = "^1.0.0"
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "<2.0.0"
types-requests="*"
python-dotenv = "^1.0.1"
ghp-import = "2.1.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
version_variable = [
"src/provenaclient/__init__.py:__version__"
] # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry install && poetry build"
dist_path = "dist/"
upload_to_release = true
upload_to_pypi = true
remove_dist = false
patch_without_tag = true
commit_version_number = true
patch_tag = ["fix", "perf"]
ignore_tags = ["chore", "docs", "style", "refactor", "test"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"