-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1.04 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
[build-system]
requires = ["setuptools>=77", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "securecrypto-bridge"
version = "1.0.1"
description = "Python bridge for SecureCrypto.dll: encryption, hashing, signing, key management"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT" # SPDX identifier
authors = [
{ name = "Jeremy", email = "jeremiahstevens@gmial.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Topic :: Security :: Cryptography"
]
[project.urls]
Homepage = "https://github.com/nitestryker/SecureCrypto-PythonBridge"
Issues = "https://github.com/nitestryker/SecureCrypto-PythonBridge/issues"
Source = "https://github.com/nitestryker/SecureCrypto-PythonBridge"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["securecrypto_bridge*"]
[tool.setuptools.package-data]
securecrypto_bridge = ["SecureCrypto.dll", "py.typed"]