-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.62 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
# pyproject.toml
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "kececisquares"
version = "0.1.7"
# Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
authors = [
{ name="Mehmet Keçeci", email="[email protected]" },
]
description = "Keçeci Binomial Squares (Keçeci Binom Kareleri): The Keçeci Binomial Square is a series of binomial coefficients forming a square or other geometric shapes region within Khayyam (مثلث خیام), Pascal, Binomial Triangle, selected from a specified starting row with defined size and alignment."
readme = "README.md"
requires-python = ">=3.11"
license = { file="LICENSE" }
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 = [
"matplotlib",
"numpy",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"ruff",
]
[dependency-groups]
dev = [{include-group = "test"}]
test = ["pytest"]
[tool.pytest.ini_options]
log_level = "INFO"
xfail_strict = true
addopts = ["-ra", "--strict-config", "--strict-markers"]
filterwarnings = ["error"]
minversion = "6.0"
testpaths = [
"tests",
"integration",
]
[tool.readthedocs]
version = 2
build.image = "stable"
python.version = "3.11"
configuration = "docs/conf.py" # Build konfigürasyonu belirtin
[project.urls]
"Homepage" = "https://github.com/WhiteSymmetry/kececisquares"
"Bug Tracker" = "https://github.com/WhiteSymmetry/kececisquares/issues"