-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 763 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
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/"]
[project]
name = "python-code-splitter"
version = "0.2.2"
requires-python = ">=3.9"
description = "split Python code by classes and functions"
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "routerman"}
]
dependencies = []
[project.urls]
GitHub = "https://github.com/routerman/python-code-splitter"
[dependency-groups]
dev = [
"autoflake>=2.3.1",
"build>=1.2.2.post1",
"isort>=6.0.1",
"pytest>=8.3.4",
"ruff>=0.9.8",
"twine>=6.1.0",
"wheel>=0.45.1",
]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
[project.scripts]
python-code-splitter = "src.main:main"