-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
62 lines (53 loc) · 1.36 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
[build-system]
requires = ["hatchling>=1.8.0"]
build-backend = "hatchling.build"
[project]
name = "sliver-py"
description = "Sliver gRPC client library."
readme = "README.md"
license-files = { paths = ["LICENSE"] }
requires-python = ">=3.7"
authors = [
{ name = "moloch", email = "875022+moloch--@users.noreply.github.com" },
{ name = "daddycocoaman", email = "daddycocoaman@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"grpcio~=1.47",
"grpcio-tools~=1.47",
"mypy-protobuf~=3.3.0",
"typing_extensions~=4.4.0; python_version < '3.8'",
]
dynamic = ["version"]
[project.urls]
"Bug Tracker" = "https://github.com/moloch--/sliver-py/issues"
Homepage = "https://github.com/moloch--/sliver-py"
[tool.hatch.envs.dev]
extra-dependencies = [
"rich~=12.5",
"black~=22.6",
"isort~=5.10",
"ward~=0.66.1b0",
"sphinx~=5.1",
"sphinx-rtd-theme~=1.0.0",
"sphinx-autodoc-typehints~=1.19.4",
]
[tool.hatch.envs.dev.scripts]
fmt = [
"isort src",
"black src",
]
[tool.hatch.version]
path = "src/sliver/__init__.py"
[tool.hatch.build]
packages = ["src/sliver"]
[tool.black]
include = "^/src"
extend-exclude = "^/src/silver/pb"
[tool.isort]
profile = "black"