-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.29 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "intent-bus"
dynamic = ["version"]
description = "Python SDK for Intent Bus — a dead-simple distributed job bus"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "dsecurity49" }
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.31.0",
"urllib3>=1.26.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10",
]
[project.scripts]
intent-bus = "intent_bus.cli:main"
[project.urls]
"Homepage" = "https://github.com/dsecurity49/Intent-Bus-sdk"
"Source" = "https://github.com/dsecurity49/Intent-Bus-sdk"
"Server" = "https://github.com/dsecurity49/Intent-Bus"
"Bug Tracker" = "https://github.com/dsecurity49/Intent-Bus-sdk/issues"
[tool.setuptools.dynamic]
version = {attr = "intent_bus.version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["intent_bus*"]