-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 1.07 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
44
45
46
47
48
[build-system]
requires = [
"setuptools",
"py_simple_readme"
]
build-backend = "setuptools.build_meta"
[project]
name = "py_libget"
readme = "README.md"
dynamic = [
"version"
]
description = "Module for handling libget packages."
authors = [
{ name = "Lyfe", email = "[email protected]" },
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
dependencies = []
keywords = []
[project.license]
text = "LICENSE"
[project.urls]
homepage = "https://github.com/fortheusers/py_libget"
"bug tracker" = "https://github.com/fortheusers/py_libget/issues"
documentation = "https://github.com/fortheusers/py_libget"
repository = "https://github.com/fortheusers/py_libget"
[tool.setuptools.dynamic.version]
attr = "py_libget.version"
[tool.setuptools.packages.find]
where = [
"src",
]
include = [
"*",
]