61 строка
1.3 KiB
TOML
61 строка
1.3 KiB
TOML
[tool.poetry]
|
|
name = "simple_ado"
|
|
version = "5.0.0"
|
|
description = "A simple wrapper around the Azure DevOps REST API"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [
|
|
"Dale Myers <dalemy@microsoft.com>"
|
|
]
|
|
|
|
readme = 'README.md'
|
|
|
|
repository = "https://github.com/Microsoft/simple_ado"
|
|
homepage = "https://github.com/Microsoft/simple_ado"
|
|
|
|
keywords = ['azure', 'devops', 'ado']
|
|
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Environment :: MacOS X',
|
|
'Intended Audience :: Developers',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.9',
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Programming Language :: Python :: 3.12',
|
|
'Topic :: Software Development',
|
|
'Topic :: Utilities'
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
deserialize = "^2.0.1"
|
|
requests = "^2.31.0"
|
|
tenacity = "^8.2.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^23.7.0"
|
|
mypy = "^1.4.1"
|
|
pylint = "^2.17.5"
|
|
pytest = "^7.4.0"
|
|
pytest-cov = "^4.1.0"
|
|
python-dotenv = "^1.0.1"
|
|
PyYAML = "^6.0.1"
|
|
toml = "^0.10.2"
|
|
types-PyYAML = "^6.0.12.11"
|
|
types-requests = "^2.31.0.2"
|
|
types-toml = "^0.10.8.7"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"deserialize"
|
|
]
|
|
ignore_missing_imports = true
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|