|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pyddns" |
| 7 | +version = "0.0.0" |
| 8 | +description = "Programmable DDNS client to automate IP address changes." |
| 9 | +readme = {file = "README.md", content-type = "text/markdown"} |
| 10 | +license = "MIT" |
| 11 | +authors = [ |
| 12 | + { name = "Mitchell Johnson", email = "91237766+mitjohnson@users.noreply.github.com" } |
| 13 | +] |
| 14 | +keywords = ["ddns", "dynamic dns", "ip automation"] |
| 15 | +requires-python = ">= 3.10" |
| 16 | +dependencies = [ |
| 17 | + "annotated-types==0.7.0", |
| 18 | + "anyio==4.8.0", |
| 19 | + "certifi==2025.1.31", |
| 20 | + "charset-normalizer==3.4.1", |
| 21 | + "click==8.1.8", |
| 22 | + "click-option-group==0.5.7", |
| 23 | + "cloudflare==4.0.0", |
| 24 | + "Deprecated==1.2.18", |
| 25 | + "distro==1.9.0", |
| 26 | + "dotty-dict==1.3.1", |
| 27 | + "exceptiongroup==1.2.2", |
| 28 | + "gitdb==4.0.12", |
| 29 | + "GitPython==3.1.44", |
| 30 | + "h11==0.14.0", |
| 31 | + "httpcore==1.0.7", |
| 32 | + "httpx==0.28.1", |
| 33 | + "idna==3.10", |
| 34 | + "importlib_resources==6.5.2", |
| 35 | + "iniconfig==2.1.0", |
| 36 | + "Jinja2==3.1.6", |
| 37 | + "markdown-it-py==3.0.0", |
| 38 | + "MarkupSafe==3.0.2", |
| 39 | + "mdurl==0.1.2", |
| 40 | + "mypy==1.15.0", |
| 41 | + "mypy-extensions==1.0.0", |
| 42 | + "packaging==25.0", |
| 43 | + "pluggy==1.6.0", |
| 44 | + "pydantic==2.10.6", |
| 45 | + "pydantic_core==2.27.2", |
| 46 | + "Pygments==2.19.1", |
| 47 | + "pytest==8.3.5", |
| 48 | + "python-gitlab==5.6.0", |
| 49 | + "python-semantic-release==10.0.2", |
| 50 | + "requests==2.32.3", |
| 51 | + "requests-toolbelt==1.0.0", |
| 52 | + "rich==14.0.0", |
| 53 | + "shellingham==1.5.4", |
| 54 | + "smmap==5.0.2", |
| 55 | + "sniffio==1.3.1", |
| 56 | + "tomli==2.2.1", |
| 57 | + "tomlkit==0.13.2", |
| 58 | + "types-requests==2.32.0.20250301", |
| 59 | + "typing_extensions==4.12.2", |
| 60 | + "urllib3==2.3.0", |
| 61 | + "wrapt==1.17.2" |
| 62 | +] |
| 63 | + |
| 64 | +[tool.pytest.ini_options] |
| 65 | +testpaths = ["tests"] |
| 66 | +pythonpath = ["src"] |
| 67 | + |
| 68 | +[tool.semantic_release] |
| 69 | +version_toml = ["pyproject.toml:project.version"] |
| 70 | +build_command = "python -m build --sdist --wheel ." |
| 71 | +commit_parser = "conventional" |
| 72 | + |
| 73 | +[tool.semantic_release.commit_parser_options] |
| 74 | +minor_tags = ["feat"] |
| 75 | +patch_tags = ["fix", "perf"] |
| 76 | +parse_squash_commits = true |
| 77 | +ignore_merge_commits = true |
| 78 | + |
| 79 | +[tool.semantic_release.changelog.default_templates] |
| 80 | +changelog_file = "CHANGELOG.md" |
| 81 | +output_format = "md" |
| 82 | + |
| 83 | +[tool.semantic_release.changelog] |
| 84 | +exclude_commit_patterns = [ |
| 85 | + '''chore(?:\([^)]*?\))?: .+''', |
| 86 | + '''ci(?:\([^)]*?\))?: .+''', |
| 87 | + '''refactor(?:\([^)]*?\))?: .+''', |
| 88 | + '''style(?:\([^)]*?\))?: .+''', |
| 89 | + '''test(?:\([^)]*?\))?: .+''', |
| 90 | + '''build\((?!deps\): .+)''', |
| 91 | + '''Initial [Cc]ommit.*''', |
| 92 | +] |
0 commit comments