Skip to content

Commit 607565f

Browse files
committed
Create pyproject.toml
1 parent bb3fa2a commit 607565f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

pyproject.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)