We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3fa2a commit 607565fCopy full SHA for 607565f
pyproject.toml
@@ -0,0 +1,23 @@
1
+[build-system]
2
+requires = ["setuptools>=61.0"]
3
+build-backend = "setuptools.build_meta"
4
+
5
+[project]
6
+name = "threads-cli"
7
+version = "1.1.2"
8
+authors = [
9
+ { name = "Peter Lord", email = "YOUR_EMAIL@DOMAIN" },
10
+ { name = "Muhammad Amin Boubaker", email = "YOUR_EMAIL@DOMAIN" }
11
+]
12
+description = "CLI tool for interacting with Meta Threads"
13
+readme = "README.md"
14
+requires-python = ">=3.6"
15
+dependencies = [
16
+ "requests>=2.32.3",
17
+ "typer"==0.12.3,
18
+ "rich>=13.7.1",
19
+ "python-dotenv>=1.0.1"
20
21
22
+[project.scripts]
23
+threads-cli = "threads_cli.cli:main"
0 commit comments