Skip to content

Commit c0c2243

Browse files
Add pyproject file to Sephera project
1 parent 3244cb5 commit c0c2243

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[project]
2+
name = "Sephera"
3+
version = "2.1.0"
4+
description = "Count, LOC, Stat your project, easy and quickly."
5+
readme = "readme.md"
6+
authors = [
7+
{ name = "Reim-developer", email = "[email protected]" }
8+
]
9+
10+
license = { file = "LICENSE" }
11+
requires-python = ">=3.13"
12+
dependencies = [
13+
"matplotlib",
14+
"rich",
15+
"PyYAML",
16+
"requests",
17+
"tabulate"
18+
]
19+
20+
[project.scripts]
21+
sephera = "main:main"
22+
23+
[build-system]
24+
requires = ["hatchling"]
25+
build-backend = "hatchling.build"
26+
27+
[project.urls]
28+
Homepage = "https://github.com/Reim-developer/Sephera"
29+
Documentation = "https://reim-developer.github.io/Sephera/"
30+
Repository = "https://github.com/Reim-developer/Sephera"
31+
32+
[tool.hatch.build.targets.wheel]
33+
packages = [
34+
"sephera", "etc", "utils",
35+
"main.py", "command.py", "handler.py",
36+
"data", "datalyzer", "__version__.py"
37+
]

0 commit comments

Comments
 (0)