Skip to content

Commit 38a2474

Browse files
committed
Update project metadata and dependency constraints within major version ranges
Update metadata and dependencies to enforce minor/patch updates only: bumped setuptools, tightened Python and dependency version constraints, removed URLs from authors, and added a maintainer.
1 parent 8f96cc5 commit 38a2474

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

pyproject.toml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
[build-system]
2-
requires = ["setuptools>=61.0"]
2+
requires = ["setuptools>=80.0,<81.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "threads-cli"
77
version = "1.1.2"
8+
maintainers = [
9+
{ name = "Peter Lord", email = "[email protected]" }
10+
]
811
authors = [
9-
{ name = "Peter Lord", url = "https://github.com/ptrlrd", email = "[email protected]" },
10-
{ name = "Muhammad Amin Boubaker", url = "https://github.com/CodeIter", email = "[email protected]" }
12+
{ name = "Peter Lord", email = "[email protected]" },
13+
{ name = "Muhammad Amin Boubaker", email = "[email protected]" }
1114
]
1215
description = "CLI tool for interacting with Meta Threads"
1316
readme = "README.md"
14-
requires-python = ">=3.6"
17+
requires-python = ">=3.8, <3.14"
1518
dependencies = [
16-
"requests>=2.32.3",
17-
"typer==0.12.3",
18-
"rich>=13.7.1",
19-
"python-dotenv>=1.0.1"
19+
"requests>=2.32,<3.0",
20+
"typer>=0.12.3,<1.0",
21+
"rich>=13.7,<14.0",
22+
"python-dotenv>=1.0,<2.0"
2023
]
21-
2224
[project.scripts]
2325
threads-cli = "main:main"

0 commit comments

Comments
 (0)