-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (67 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# pyproject.toml
[build-system]
requires = ["setuptools>=84.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kha256"
version = "0.4.1"
dynamic = ["keywords", "maintainers"]
license = "AGPL-3.0-or-later" # SPDX ID
# Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
authors = [
{ name="Mehmet Keçeci", email="enfo@tuta.io" },
]
description = "Keçeci Hash Algorithm (Keçeci Hash Algoritması), KHA-256"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
]
# Ana bağımlılıklarınız
dependencies = [
"numpy",
"kececinumbers",
"bcrypt",
"blake3",
"pycryptodome",
"xxhash",
"argon2-cffi",
"pandas",
"cryptography",
"ipywidgets",
"ipython",
"scipy",
"aiohttp",
"python-dotenv",
"nest-asyncio2",
]
[package.build-dependencies]
setuptools = ">=61.0"
cython = ">=3.0.0"
compilers = "*" # Linux ortamında Cython kodunu derlemek için GCC/Clang kurar
[tool.pixi.package.build-dependencies]
setuptools = ">=61.0"
cython = ">=3.0.0"
compilers = "*"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.setuptools.packages.find]
include = ["kha256*"]
exclude = ["binder", "build*", "content", "data", "dist", "dist*", "docs", "docs*", "examples*", "examples", "notebooks", "tests", "tests*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.py", "*.pyi"] # Sadece Python dosyaları
[project.urls]
Homepage = "https://github.com/WhiteSymmetry/kha256"
Repository = "https://github.com/WhiteSymmetry/kha256"
[dependency-groups]
build = [
"setuptools (>=82.0.1)",
"cython (>=3.2.5)"
]