-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.53 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
[tool.poetry]
name = "discretelog"
version = "0.1.1"
description = "Discrete logarithms in the ring of integers modulo n"
authors = ["gilcu3"]
readme = "README.md"
license = "Apache Software License 2.0"
homepage = "https://github.com/gilcu3/discretelog"
repository = "https://github.com/gilcu3/discretelog"
keywords = ["discrete logarithm", "number theory", "cryptography"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.10"
colorama = "^0.4.6"
primefac = "^2.0.12"
tqdm = "^4.66.4"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.0"
pytest-benchmark = "^4.0.0"
[tool.poetry.group.dev.dependencies]
coverage = {extras = ["toml"], version = "^7.5.1"}
flake8 = "^7.0.0"
flake8-bugbear = "^24.4.26"
mypy = "^1.10.0"
types-tqdm = "^4.66.0.20240417"
types-colorama = "^0.4.15.20240311"
black = "^24.4.2"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
omit = ["tests/*"]
fail_under = 75
[tool.pytest.ini_options]
addopts = "-v --capture=sys"
filterwarnings = "ignore::pytest.PytestUnraisableExceptionWarning"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"