-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.08 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
[tool.poetry]
name = "sentry-wrapper"
version = "3.0.1"
description = "Forward exceptions raised by a setuptools entrypoint to sentry"
authors = ["Julien Castets <[email protected]>"]
license = "WTFPL"
readme = "README.rst"
repository = "https://github.com/scaleway/sentry-wrapper"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: System :: Distributed Computing",
]
packages = [
{ include = "sentry_wrapper" },
{ include = "sentry_msg" },
]
include = ["CHANGES.rst"]
[tool.poetry.scripts]
sentry-wrapper = "sentry_wrapper:execute"
sentry-msg = "sentry_msg:execute"
[tool.poetry.dependencies]
python = "^3.6"
sentry-sdk = "^2.18.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"