-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.27 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linkforge"
version = "2.0.0"
description = "A modern GUI tool for creating and managing filesystem links (Junctions, Symlinks, Hardlinks)."
readme = "README.md"
authors = [
{name = "LinkForge Team", email = "mathew@example.com"},
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["symlink", "junction", "mklink", "gui", "file-management"]
dependencies = [
"customtkinter>=5.2.0",
"Pillow>=10.0.0",
"packaging>=23.0"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/Mathew005/LinkForge"
[project.scripts]
linkforge = "src.app:main"
[tool.setuptools]
packages = ["src", "src.models", "src.services", "src.ui", "src.ui.widgets", "src.utils"]
[tool.setuptools.package-data]
"*" = ["*.ico", "*.png"]