-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (49 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cryptographic_estimators"
license = "Apache-2.0"
license-files = [
"LICENSE",
]
description = "This library provides bit security estimators and asymptotic complexity estimators for cryptographic problems."
authors = [
{name = "TII", email = "cryptographic_estimators@tii.ae"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
]
version = "2.1.1"
dependencies = [
"setuptools>=45",
"sphinx>=5.3.0",
"scipy>=1.4.0",
"furo",
"prettytable",
"pytest",
"pytest-xdist",
"python-flint",
"pytest-cov",
"pyyaml",
"sympy",
]
[project.urls]
Homepage = "https://estimators.crypto.tii.ae/"
Documentation = "https://github.com/Crypto-TII/CryptographicEstimators/blob/main/docs/github/user_guide.md"
Repository = "https://github.com/Crypto-TII/CryptographicEstimators"
Issues = "https://github.com/Crypto-TII/CryptographicEstimators/issues"
[tool.setuptools.packages.find]
where = ["."] # Look for packages starting from the current directory
include = ["cryptographic_estimators*"] # Include any package/module that starts with "cryptographic_estimators"
namespaces = true # Properly handle nested package structures
[tool.setuptools.package-data]
"*" = ["*"] # Include all files in all discovered packages
cryptographic_estimators = ["**/*"] # The "**" means "recursive", so it includes files in subdirectories
[tool.pytest.ini_options]
addopts = "-v --import-mode=importlib"
testpaths = [
"tests",
]