-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (69 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
89 lines (69 loc) · 2.21 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "microprojects"
description = "MicroProjects in Python"
version = "0.1.2"
keywords = ["microprojects", "ideas", "project ideas", "calculator"]
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">= 3.10"
dependencies = []
authors = [
{name = "Nyx", email = "241463@students.au.edu.pk"},
]
maintainers = [
{name = "Nyx", email = "241463@students.au.edu.pk"},
]
classifiers = [
# How mature is this project?
"Development Status :: 4 - Beta",
"Typing :: Typed",
"Operating System :: OS Independent",
"Natural Language :: English",
"Environment :: Console",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.urls]
Documentation = "https://github.com/nyx-4/MicroProjects/wiki"
Repository = "https://github.com/nyx-4/MicroProjects"
Issues = "https://github.com/nyx-4/MicroProjects/issues"
Changelog = "https://github.com/nyx-4/MicroProjects/blob/main/CHANGELOG.md"
DOWNLOAD = "https://pypi.org/project/microprojects/#files"
[project.scripts]
calc = "microprojects:calc_main"
ngit = "microprojects:ngit_main"
[project.optional-dependencies]
gui = []
cli = []
[tool.pytest.ini_options]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "-q"
[tool.hatch.build.targets.wheel]
packages = ["microprojects"]
[tool.ruff]
line-length = 88
[tool.ruff.format]
indent-style = "space"
line-ending = "lf"
docstring-code-format = true
[tool.ruff.lint]
ignore = ["F401"]