This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (56 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Taking on -> https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# twine docs -> https://twine.readthedocs.io/en/stable/
# to release new versions i need to load another distribution and stuff
# FIRST CHANGE VERSIONS AND DO A CHANGELOG
# 1 -> python -m build
# 2 -> python -m twine upload --repository pypi dist/*
# username -> __token__
# password -> Pypi token
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
authors = [{name = "Alvaro Monllor", email = "alvarodrumer54@gmail.com"}]
name = "pymtools"
description = "Miscellaneous tools for Python"
version = "0.1.1b"
readme = "README.md"
license = { file="LICENCE.md" }
requires-python = ">=3.10.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Natural Language :: Spanish",
"Typing :: Typed",
]
dependencies = [
"colorama>=0.4.4",
"psutil>=5.9.0",
"chardet>=4.0.0",
"csv>=0.0.0",
"xmltodict",
"toml>=0.10.0",
"pillow>=9.0.1,<10.1.0",
"matplotlib>=3.5.2,<3.9.0",
]
keywords = [
"Python",
"Python3",
"Python-tools",
"Terminal tools"
]
[project.optional-dependencies]
dev = [
"typing_extensions>=3.7.4,<4.10.0"
]
[project.urls]
"Author repository" = "https://github.com/Backist/"
repository = "https://github.com/Backist/Misctools"
"Bug issues" = "https://github.com/Backist/Misctools/issues"
[tool.mypy]
python_version = "3.10.2"
strict = true