forked from broadinstitute/python-cert_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (32 loc) · 887 Bytes
/
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
[tool.poetry]
name = "cert_manager"
version = "2.3.0"
description = "Python interface to the Sectigo Certificate Manager REST API"
license = "BSD-3-Clause"
authors = ["Andrew Teixeira <[email protected]>"]
readme = "README.md"
repository = "https://github.com/broadinstitute/python-cert_manager.git"
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
keywords = ["sectigo", "comodo", "certificate"]
[tool.poetry.dependencies]
python = "^3.7" # Compatible python versions must be declared here
requests = "*"
toml = ">=0.9,<0.11"
[tool.poetry.dev-dependencies]
bump2version = "*"
coverage = ">=4.4.2"
fixtures = "*"
green = ">=2.12.0"
mock = ">=2.0.0"
pydocstyle = "<7"
# 2.5.0 breaks pylama 8.3.8
pyflakes = "< 2.5.0"
pylama = "*"
pylint = "*"
pyyaml = "==6.0"
responses = "*"
testtools = "*"
twine = "*"
unittest2 = ">=1.1.0"
wheel = "*"
yamllint = "*"