-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (40 loc) · 1.15 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bugsplat"
version = "1.0.4"
authors = [
{ name="Bobby Galli", email="[email protected]" },
]
description = "A Python package for sending Unhandled Exceptions to BugSplat"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
'requests<=2.29.0'
]
[project.optional-dependencies]
test = [
"certifi==2022.6.15",
"charset-normalizer==2.0.12",
"idna==3.3",
"requests==2.29.0",
"urllib3==1.26.9"
]
[project.urls]
Homepage = "https://github.com/BugSplat-Git/bugsplat-py"
Issues = "https://github.com/BugSplat-Git/bugsplat-py/issues"