-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (94 loc) · 2.35 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (94 loc) · 2.35 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.4",
"hatchling>=1.25",
]
[project]
name = "bitcaster-sdk"
description = "Bitcaster Python SDK"
readme = "README.md"
license = { text = "MIT" }
maintainers = [
{ name = "sax", email = "s.apostolico@gmail.com" },
{ name = "mark", email = "hanarero@gmail.com" },
]
authors = [
{ name = "sax", email = "s.apostolico@gmail.com" },
{ name = "mark", email = "hanarero@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [ "version" ]
dependencies = [
"click",
"humanfriendly",
"requests",
]
optional-dependencies.amqp = [ "pika>=1.3" ]
urls.Homepage = "https://github.com/bitcaster-io/bitcaster-sdk"
urls.Repository = "https://github.com/bitcaster-io/bitcaster-sdk"
scripts.bitcaster = "bitcaster_sdk:__cli__.cli"
[dependency-groups]
dev = [
"diff-cover>=10.4",
"pre-commit",
"pytest",
"pytest-coverage",
"pytest-django",
"pytest-xdist",
"responses",
"ruff",
"tox",
]
docs = [
"cairosvg>=2.9",
"markupsafe>=2.1.5",
"mdx-gh-links>=0.4",
"mkdocs-autolinks-plugin>=0.7.1",
"mkdocs-awesome-pages-plugin>=2.9.3",
"mkdocs-click>=0.8.1",
"mkdocs-embed-external-markdown>=3.0.2",
"mkdocs-ezglossary-plugin>=1.6.10",
"mkdocs-ezlinks-plugin>=0.1.14",
"mkdocs-gen-files>=0.5",
"mkdocs-get-deps>=0.2",
"mkdocs-include-markdown-plugin>=6.2.2",
"mkdocs-link-marker>=0.1.3",
"mkdocs-macros-plugin>=1.0.5",
"mkdocs-material>=9.5.15",
"mkdocs-minify-plugin>=0.8",
"mkdocs-redirects>=1.2.1",
"mkdocs-simple-hooks>=0.1.5",
"mkdocstrings[python]>=0.24.1",
"properdocs",
"pymdown-extensions>=10.21.3",
]
typing = [
"mypy>=1.9",
"types-requests>=2.32.0.20240712",
]
[tool.hatch]
build.hooks.vcs.version-file = "src/bitcaster_sdk/version.py"
build.targets.sdist.ignore-vcs = true
build.targets.sdist.include = [
"src/bitcaster_sdk/**/*.*",
]
build.targets.sdist.exclude = [
"src/bitcaster_sdk/**/~*.*",
]
build.targets.wheel.packages = [ "src/bitcaster_sdk" ]
version.source = "vcs"
raw-options = { root = "../.." }
[tool.check-manifest]
ignore = """
Makefile
*.sqlite
.tox/*"""