-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.17 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
44
[tool.poetry]
name = "sentry-api-python"
version = "0.3.0"
description = "SDK in Python to simplify access Sentry API (https://docs.sentry.io/api/)"
authors = ["Daniel Ancuta <whisller@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/epsylabs/sentry-api-python"
repository = "https://github.com/epsylabs/sentry-api-python"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["sentry", "sentry-api-sdk"]
packages = [{include = "sentry_api"}]
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.28.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
bump2version = "^1.0.1"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"