35 lines
924 B
TOML
35 lines
924 B
TOML
[tool.poetry]
|
|
name = "pillarsdk"
|
|
version = "0.2"
|
|
description = "The Pillar REST SDK provides Python APIs to communicate to the Pillar webservices."
|
|
authors = [
|
|
"Francesco Siddi <francesco@blender.org>",
|
|
"Sybren Stüvel <sybren@blender.studio>",
|
|
]
|
|
classifiers = [
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.5"
|
|
pyOpenSSL = "16.2.0"
|
|
requests = "2.13.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
tox = "2.3.1"
|
|
wheel = "0.29.0"
|
|
pytest = "3.0.6"
|
|
pytest-cov = "2.4.0"
|
|
responses = "0.5.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|