-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 934 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
33
34
35
36
37
[tool.poetry]
name = "ceg"
version = "0.5.4"
description = "A simple gist crud utility."
license = "GPL-3.0-or-later"
authors = ["Justaus3r <[email protected]>"]
readme = "README.rst"
repository = "https://www.github.com/justaus3r/ceg"
keywords = ["gist", "cli", "api"]
classifiers = [
"Environment :: Console",
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.10"
rich = "^12.5.1"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.971"
[tool.poetry.scripts]
ceg = "ceg.cli:ceg_cli"
[tools.poetry.urls]
"Bug Tracker" = "https://github.com/ceg/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"