-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (52 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (52 loc) · 1.49 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaimead7-pyutils"
version = "0.2.0"
description = "Different utilities for general purpose usage on python projects."
authors = [
{name = "Jaimead7", email = "alvarez.diaz.jaime1@gmail.com"},
]
maintainers = [
{name = "Jaimead7", email = "alvarez.diaz.jaime1@gmail.com"},
]
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
license-files = [
"LICENSE",
]
keywords = [
"utilities",
"tools"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"tomli >= 2.2.1",
"tomli-w >= 1.2.0",
"pyyaml >= 6.0.2",
"typing_extensions >= 4.14.1"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"wheel>=0.45.1",
"twine>=6.1.0",
"build>=1.3.0"
]
[project.urls]
Homepage = "https://github.com/Jaimead7/PyUtils"
Repository = "https://github.com/Jaimead7/PyUtils"
[tool]
[tool.setuptools]
[tool.setuptools.packages]
find = {}
[tool.pytest.ini_options]
python_files = "test_*.py"
addopts = "--verbose"