forked from joeirimpan/zammad_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.03 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
[tool.poetry]
name = "zammad_py"
version = "3.0.0"
readme = "README.rst"
description = "Python API client for zammad"
authors = ["Joe Paul <[email protected]>"]
license = "MIT"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
homepage = "https://github.com/joeirimpan/zammad_py"
documentation = "https://zammad-py.readthedocs.io/"
repository = "https://github.com/joeirimpan/zammad_py.git"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
pytest = "^8.0.0"
vcrpy = "^5.1.0"
flake8 = "7.0.0"
black = "24.1.1"
isort = "5.13.2"
[tool.mypy]
files = "zammad_py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"