2023-04-02 07:19:19 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "paigram-logger"
|
2023-04-02 12:49:19 +00:00
|
|
|
version = "0.0.2"
|
2023-04-02 07:19:19 +00:00
|
|
|
description = "A logger for PaiGram's projects."
|
|
|
|
authors = ["Karako <karakohear@gmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2023-04-02 08:46:05 +00:00
|
|
|
packages = [{ include = "pg_logger", from = "src" }]
|
|
|
|
include = ["LICENSE"]
|
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
2023-04-02 09:03:50 +00:00
|
|
|
homepage = "https://github.com/PaiGramTeam/paigram-logger"
|
2023-04-02 07:19:19 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2023-04-02 08:46:05 +00:00
|
|
|
rich = "^13.3.0"
|
|
|
|
pydantic = { extras = ["dotenv"], version = "^1.10.7" }
|
2023-04-02 07:19:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-04-02 08:46:05 +00:00
|
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
|
|
name = "official-pypi"
|
|
|
|
url = "https://pypi.python.org/simple"
|