-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 851 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "BoostCLI"
version = "0.7.0"
authors = [{email = "boostcli.v1pty@slmail.me" }]
description = "BoostCLI"
requires-python = ">=3.7"
dependencies = [
"grpcio<2,>=1.62",
"aiogrpc<2,>=1.8",
"click<9,>=8.0.3",
"beautifulsoup4<5,>=4.10.0",
"lxml<5,>=4.7.1",
"requests<3,>=2.27.1",
"tabulate<1,>=0.8.9",
"tqdm<5,>=4.62.3",
"rich<13,>=12.5.1",
"protobuf<5"
]
[project.optional-dependencies]
dev = [
"grpcio-tools<2,>=1.62",
"pytest<7,>=6.2.5",
"flake8<5,>=4.0.1",
"flake8-black<1,>=0.3.2",
]
deploy = [
"build<1,>=0.8.0",
"twine<5,>=4.0.1",
]
[project.scripts]
boostcli = "src.cli:cli"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false