-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.33 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
59
60
61
62
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "analyse-caesar-cipher"
version = "0.1.0"
dependencies = [
"jupyterlite-core==0.4.1",
"jupyterlab==4.2.5",
# Python kernel for jupyterlite
"jupyterlite-pyodide-kernel==0.4.2",
"matplotlib==3.9.2",
"nbdime==4.0.2",
"ipywidgets==8.1.5",
]
requires-python = ">=3.12"
authors = [
{name = "bitnik", email = "[email protected]"},
]
maintainers = [
{name = "bitnik", email = "[email protected]"},
]
description = "Frequency Analysis on Caesar Cipher"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["frequency", "analysis", "caesar", "cipher"]
classifiers = [
# "Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pip-tools",
]
# [project.optional-dependencies]
# gui = ["PyQt5"]
# cli = [
# "rich",
# "click",
# ]
[project.urls]
Homepage = "https://github.com/bitnik/analyse-caesar-cipher"
Documentation = "https://github.com/bitnik/analyse-caesar-cipher"
Repository = "https://github.com/bitnik/analyse-caesar-cipher"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
# ignore = [
# "F841", # unused variable
# ]
select = [
# "E9", # syntax
"I", # isort
"UP", # pyupgrade
# TODO
# "F", # flake8
]