forked from okoeroo/pyDANETLSA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.15 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyDANETLSA"
version = "1.1.0"
description = "Python library to generate a TLSA record format based on the active certificate on a host."
readme = "README.md"
authors = [
{ name = "Oscar Koeroo", email = "okoeroo@gmail.com" },
{ name = "Nivesh Varma", email = "73319848+nv6@users.noreply.github.com" }
]
license = { text = "MIT" }
dependencies = [
"cryptography",
"pyOpenSSL",
"requests",
"dnspython"
]
requires-python = ">=3.10"
keywords = ["DANE", "TLSA", "X.509", "X509", "certificate"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/okoeroo/pyDANETLSA"
Repository = "https://github.com/okoeroo/pyDANETLSA"
Issues = "https://github.com/okoeroo/pyDANETLSA/issues"
#[tool.setuptools.packages.find]
#where = ["src"]
#include = ["pyDANETLSA.py", "libs"] # Explicitly include only your package
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"rich>=14.1.0",
]