-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool]
[tool.poetry]
name = "ssl_certinfo"
version = "1.1.2"
description = "SSL CertInfo displays expiration dates and other information for SSL certificates from a set of hosts."
authors = ["StdTom <[email protected]>"]
license = "Apache Software License 2.0"
readme = "README.rst"
homepage = "https://github.com/stdtom/ssl_certinfo"
repository = "https://github.com/stdtom/ssl_certinfo"
classifiers = [
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
python = "^3.8"
pyOpenSSL = "*"
PyYAML = "*"
tqdm = "*"
pandas = "*"
tabulate = "*"
[tool.poetry.dev-dependencies]
black = "21.7b0"
bump2version = "*"
coverage = "*"
flake8 = "*"
isort = "*"
pre-commit = "*"
pytest = "*"
pytest-runner = "*"
pytest-timeout = "*"
Sphinx = "*"
tox = "*"
twine = "*"
watchdog = "*"
wheel = "*"
"proxy.py" = "2.3.1"
click = "<=8.0.4"
pyinstaller = "*"
[tool.poetry.scripts]
ssl_certinfo = "ssl_certinfo.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"