-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (26 loc) · 872 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[tool.poetry]
name = "creddit"
version = "1.0.0"
description = "An unofficial cli client for Reddit, aimed at people who regularly browse specific subreddits or topics instead of reading the homepage (r/all)."
authors = ["Vishal N <dev@vishalnandagopal.com>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.31.0"
colorama = "^0.4.6"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
ruff = "^0.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/vishalnandagopal/creddit"
Repository = "https://github.com/vishalnandagopal/creddit"
Issues = "https://github.com/vishalnandagopal/creddit/issues"
[project.scripts]
creddit = "creddit.terminal:run"
[tool.poetry.scripts]
creddit = "creddit.terminal:run"