forked from secomind/colint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 828 Bytes
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
[build-system]
requires = ["setuptools>=60.5", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "colint"
version = "0.2.1"
description = ""
authors = [
{ name = "Davide Colì", email = "davide.coli@secomind.com" },
{ name = "Michele Puppin", email = "michele.puppin@secomind.com" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"black==25.11.0",
"exceptiongroup>=1.2.2",
"flake8-docstrings==1.7.0",
"GitPython>=3.1.43",
"ipykernel==7.1.0",
"isort==7.0.0",
"tokenize-rt>=6.0.0",
"toml>=0.10.2",
"tomli>=2.0.1",
"typing-extensions>=4.12.2",
]
[project.scripts]
colint = "colint.colinter:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"colint" = ["*.toml"]