-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.27 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
[project]
name = "scfetch"
version = "2.0.3"
description = "minimal fetch program for windows, linux and macos"
authors = [
{ name = "sctech", email = "[email protected]" }
]
dependencies = [
"colorist",
"psutil",
"screeninfo",
"requests",
]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Operating System",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
readme = "README.md"
urls = { source = "https://github.com/sctech-tr/scfetch" }
[project.scripts]
scfetch = "scfetch.__main__:main"
[tool.setuptools]
packages = ["scfetch"]
include-package-data = true
[tool.setuptools.package-data]
"scfetch" = ["data/*.json", "config/*.ini"]