Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[![](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](CODE_OF_CONDUCT.md)
![Latest release](https://img.shields.io/github/v/release/voxmedia/AutoTLS?display_name=tag&sort=semver)
![Tests](https://img.shields.io/github/actions/workflow/status/voxmedia/AutoTLS/pytest.yaml?branch=release/0.1.0&label=tests)

# Table of Contents

Expand Down Expand Up @@ -85,8 +87,8 @@ python -m pip install -e .
> [!NOTE]
> If you run into errors with the `psycopg2` build, you may need to rebuild your venv with Python 3.9 (install using Homebrew (`brew install python@3.9`) or pyenv):
```
python3.9 -m venv venv
source venv/bin/activate
python3.9 -m venv .venv
source .venv/bin/activate
python -m pip install -e .
```

Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ We use [Semantic Versioning](https://semver.org/):
git checkout main
git pull origin main
git checkout -b release/x.y.z+1
git push origin release/x.y.z+1
git push -u origin release/x.y.z+1
```

2. **Delete the old release branch**:
Expand Down
15 changes: 11 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[build-system]
requires = ["flit_core >= 3.12.0, <4"]
build-backend = "flit_core.buildapi"

[project]
name = "tlstool"
version = "0.1.0"
Expand All @@ -8,7 +12,7 @@ dependencies = [
"boto3==1.39.8",
"botocore==1.39.8",
"certbot==4.1.1",
"click==8.1.8",
"click>=8.0,<8.2",
"coverage-badge==1.1.2",
"cryptography==45.0.6",
"ddtrace==3.10.2",
Expand Down Expand Up @@ -41,6 +45,9 @@ dependencies = [
"whoisdomain==1.20250220.2"
]

[build-system]
requires = ["flit_core >= 3.12.0, <4"]
build-backend = "flit_core.buildapi"
[project.urls]
Homepage = "https://github.com/voxmedia/AutoTLS"
Documentation = "https://github.com/voxmedia/AutoTLS#readme"
Issues = "https://github.com/voxmedia/AutoTLS/issues"
Changelog = "https://github.com/voxmedia/AutoTLS/blob/main/CHANGELOG.md"