-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (69 loc) · 3.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
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
90
91
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
# DESC | The name of the package. Required
name = "dev-toolbox"
# DESC | The version of the package. Required
version = "1.1.4"
# DESC | A short description of the package. Required
description = "A Python library that provides a collection of full utility functions and modules for various tasks of develop."
# DESC | A list of keywords that the package is related to. Optional
keywords = ["python", "library", "utility functions", "file operations", "system information", "image processing", "data handling", "module management", "exception handling", "timer", "colors manipulation", "image analysis", "web requests"]
# DESC | The authors of the package. Required
authors = [{ name="Mr Yassin NM", email="[email protected]" },]
# DESC | The license of the package. Optional
license = {file="LICENSE"}
# DESC | A path, or list of paths corresponding to the README file(s) of the package. Optional
readme = "README.md"
# DESC | A The Python version requirements of the project.
requires-python = ">=3.9"
# DESC | A list of PyPI trove classifiers that describe the project https://pypi.org/classifiers/. Optional
classifiers = [
"Topic :: Utilities",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Natural Language :: English",
]
# DESC | A dependencies requires needed.
dependencies = [
'python-dotenv >= 1.0.0',
'loguru >= 0.7.0',
'numpy >= 1.24.3',
'tqdm >= 4.66.1',
'Pillow >= 9.5.0',
'opencv-python >= 4.7.0.72',
'requests >= 2.31.0',
'chardet >= 5.1.0',
'imutils >= 0.5.4',
'scikit-image >= 0.20.0',
'scikit-learn >= 1.2.2',
'matplotlib >= 3.7.1',
]
[project.urls]
# DESC | An URL to the website of the project. Optional
homepage = "http://viscoder.com"
# DESC | An URL to the repository of the project. Optional
repository = "https://github.com/MrYassinox/"
# DESC | An URL to the documentation of the project. Optional
documentation = "https://github.com/MrYassinox/"
# DESC | Bug url
"Bug Tracker" = "https://github.com/MrYassinox/"
[tool.setuptools]
include-package-data = true # DESC | By default, include-package-data is true in pyproject.toml, so you do
[tool.setuptools.packages.find]
where = ["."] # DESC | list of folders that contain the packages (["."] by default)
include = ["DevToolbox*"] # DESC | package names should match these glob patterns (["*"] by default)
exclude = [] # DESC | exclude packages matching these glob patterns (empty by default) ["my_package.tests*"]
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md"] # DESC | include data the .txt etc as data files and ("*" the root packages folders or name)
# pkg = ["*.txt", "*.md"]