-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (68 loc) · 2.32 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "global-logger"
version = "0.4.2"
description = "Based on Python built-in logger, expands it, and provides a global logger to your system. Easy on-screen and/or .log files output setup without pain for Python newcomers. Python 2 and 3 compatible"
authors = ["Alexey Rubasheff <alexey.rubasheff@gmail.com>"]
readme = "README.rst"
repository = "https://github.com/ALERTua/global_logger"
packages = [
{ include = "global_logger" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=2.7.18,<3.0 || >=3.8,<4.0"
pathlib = { version = "1.0.1", python = "<3.4" }
enum34 = { version = "1.1.10", python = "<3.6" }
future = { version = "1.0.0", python = "<3" }
colorama = [
{ version = "0.4.6", python = ">3" },
{ version = "<5", python = "<3" }
]
colorlog = [
{version = "<5", python = "<3.5"},
{version = "6.8.2", python = ">=3.5"}
]
pendulum = [
{ version = "^3.0.0", python = ">3.8" },
{ version = ">=2.1.2", python = "<=3.8" }
]
win-unicode-console = [
{version = "==0.4", markers = "platform_system == 'Windows' and platform_version >= '10.0.18362'"},
{version = ">0.4", markers = "platform_system == 'Windows' and platform_version < '10.0.18362'"}
]
[tool.poetry.group.dev.dependencies]
python = "^3.9"
tox = [
{ version = "==4.5.1", python = "^3.7" },
{ version = "==3.28.0", python = "<3" }
]
python-dotenv = [
{ version = "^1.0.1", python = "^3.12" },
{ version = "==0.18.0", python = "<3" }
]
pre-commit = { version = "^3.7.1", python = "^3.12" }
wheel = { version = "==0.37.1", python = "^3.12" }
ruff = { version = "^0.5.4", python = "^3.12" }
sphinx = { version = '7.4.7', python = "^3.12" }
sphinx_rtd_theme = { version = '^2.0.0', python = "^3.12" }
toml = "^0.10.2"
[[tool.poetry.source]]
name = "pypi"
priority = "primary"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"