-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (27 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
27 lines (27 loc) · 853 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
dependencies = ["requests"]
name = "hawk_python_sdk"
authors = [{ name = "CodeX Team", email = "team@codex.so" }]
description = "Python errors Catcher module for Hawk."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Bug Tracking",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Environment :: Web Environment",
]
[project.optional-dependencies]
flask = ["flask"]
fastapi = ["fastapi"]
[tool.hatch.version]
path = "src/hawkcatcher/__init__.py"
[project.urls]
Homepage = "https://github.com/codex-team/hawk.python"
Issues = "https://github.com/codex-team/hawk.python/issues"