-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
46 lines (38 loc) · 991 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
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "cryptographic_estimators"
description = "This library provides bit security estimators and asymptotic complexity estimators for cryptographic problems."
authors = [
{name = "TII", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: MIT License",
]
version = "2.0.0"
dependencies = [
"sphinx>=5.3.0",
"scipy>=1.4.0",
"furo",
"prettytable",
"pytest",
"pytest-xdist",
"python-flint",
"pytest-cov",
"pyyaml",
"sympy",
]
[tool.setuptools]
packages = ["cryptographic_estimators", "tests"]
[tool.setuptools.package-data]
cryptographic_estimators = ["*"]
[tool.pytest.ini_options]
addopts = "-v --import-mode=importlib"
testpaths = [
"tests",
]