This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.69 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
[project]
name = "reduct-cli"
version = "0.10.0"
description = "CLI client for ReductStore"
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["cli", "reductstore", "tool", "database", "time series database"]
authors = [
{ email = "[email protected]", name = "Alexey Timin" }
]
maintainers = [
{ email = "[email protected]", name = "Alexey Timin" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends"
]
dependencies = [
"reduct-py~=1.8",
"click~=8.1",
"tomlkit~=0.12",
"rich~=13.7",
]
[project.optional-dependencies]
test = [
"pytest~=7.4",
"pytest-mock~=3.12",
"pytest-asyncio~=0.23"
]
lint = ["pylint~=3.0"]
format = ["black~=23.10"]
docs = [
"mkdocs~=1.5",
"mkdocs-material~=9.5",
"plantuml-markdown~=3.9",
"mkdocs-same-dir~=0.1",
"mkdocs-click~=0.8"
]
[project.urls]
ReductStorage = "https://www.reduct.store"
Documentation = "https://cli.reduct.store"
SourceCode = "https://github.com/reductstore/reduct-cli"
Changelog = "https://github.com/reductstore/reduct-cli/blob/main/CHANGELOG.md"
Twitter = "https://twitter.com/ReductStore"
Blog = "https://www.reductstore/blog"
[project.scripts]
reduct-cli = "reduct_cli:main"
rcli = "reduct_cli:main"
[tool.pylint.MASTER]
good-names = "ls,rm"
disable = ["fixme", "duplicate-code"]
extension-pkg-whitelist = "pydantic"