-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
89 lines (75 loc) · 2.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "hrflow-connectors"
version = "4.27.0"
description = "hrflow-connectors is an open source project created by HrFlow.ai to allow developers to connect easily HR ecosystem component."
license = "Apache-2.0"
authors = ["HrFlow.ai <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/Riminder/hrflow-connectors"
repository = "https://github.com/Riminder/hrflow-connectors"
documentation = "https://github.com/Riminder/hrflow-connectors"
exclude = ["Makefile", ".pre-commit-config.yaml", "manifest.json", "tests", "poetry.lock"]
[tool.poetry.urls]
"HrFlow.ai Documentation" = "https://developers.hrflow.ai/"
"Changelog" = "https://github.com/Riminder/hrflow-connectors/releases/"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "1.10.8"
Jinja2 = "^3.0.3"
hrflow = "^4.2.0"
requests = "^2.27.1"
boto3 = {version = "^1.24.66", optional = true}
simple-salesforce = "^1.12.4"
typing-extensions = "^4.7.1"
beautifulsoup4 = "4.10.0"
puremagic = "^1.27"
msgspec = "^0.18.6"
smbprotocol = "^1.15.0"
mysql-connector-python = "^9.1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
ipython = "^7.0"
flake8 = "^4.0.1"
flake8-isort = "^4.1.1"
flake8-black = "^0.3.6"
pre-commit = "^2.17.0"
pytest-cov = "^3.0.0"
ipdb = "^0.13.9"
nox = "^2022.11.21"
python-semantic-release = "^8.0.8"
pillow = "<10"
boto3-stubs = {extras = ["s3"], version = "^1.35.57"}
[tool.poetry.extras]
s3 = ["boto3"]
[tool.black]
line-length = 88
target-version = ["py39", "py310"]
preview = true
extend-exclude = ".*connector.pyi$"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
tag_format = "v{version}"
build_command = "poetry build"
version_toml = [
"pyproject.toml:tool.poetry.version",
]
[tool.semantic_release.branches.main]
match = "(master)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "hrflow-semantic-release <hrflow-semantic-release>"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true