piceli 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
piceli-0.0.2/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 piceli
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
piceli-0.0.2/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.1
2
+ Name: piceli
3
+ Version: 0.0.2
4
+ Summary: Infrastructure for python
5
+ Home-page: https://piceli.pynenc.org
6
+ License: MIT
7
+ Author: Jose Diaz
8
+ Requires-Python: >=3.11.6
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: System :: Distributed Computing
17
+ Project-URL: Documentation, https://docs.piceli.pynenc.org
18
+ Project-URL: Repository, https://github.com/pynenc/piceli
19
+ Description-Content-Type: text/markdown
20
+
21
+ # piceli
22
+
23
+ piceli: infrastructure management with python
24
+
piceli-0.0.2/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # piceli
2
+
3
+ piceli: infrastructure management with python
File without changes
@@ -0,0 +1,2 @@
1
+ if __name__ == "__main__":
2
+ print("Hello World!")
@@ -0,0 +1,124 @@
1
+ [tool.poetry]
2
+ name = "piceli"
3
+ version = "0.0.2"
4
+ description = "Infrastructure for python"
5
+ authors = ["Jose Diaz"]
6
+ license = "MIT License"
7
+ readme = "README.md"
8
+ homepage = "https://piceli.pynenc.org"
9
+ documentation = "https://docs.piceli.pynenc.org"
10
+ repository = "https://github.com/pynenc/piceli"
11
+ classifiers = [
12
+ "Development Status :: 1 - Planning",
13
+ "Intended Audience :: Developers",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Topic :: Software Development :: Libraries :: Python Modules",
17
+ "Topic :: System :: Distributed Computing",
18
+ ]
19
+
20
+
21
+ [tool.poetry.scripts]
22
+ pynenc = 'piceli.__main__:main'
23
+
24
+
25
+ [tool.poetry.dependencies]
26
+ python = ">=3.11.6"
27
+
28
+
29
+ [tool.poetry.group.dev.dependencies]
30
+ black = "23.11.0"
31
+ pytest = ">=7.3.1,<8.0.0"
32
+ coverage = { version = ">=7.2.6,<8.0", extras = ["toml"] }
33
+ mypy = "1.7.0"
34
+ pre-commit = "^3.5.0"
35
+
36
+
37
+ [tool.poetry.group.docs]
38
+ optional = true
39
+
40
+ [tool.poetry.group.docs.dependencies]
41
+ sphinx = "^7.0"
42
+ myst-parser = "^2"
43
+ furo = "^2023"
44
+ sphinx-copybutton = "^0.5.2"
45
+ sphinx-design = "^0.5.0"
46
+ sphinx-inline-tabs = "^2023.4.21"
47
+ sphinx-autodoc2 = "^0.5.0"
48
+
49
+ [build-system]
50
+ requires = ["poetry-core"]
51
+ build-backend = "poetry.core.masonry.api"
52
+
53
+
54
+ [tool.isort]
55
+ profile = "black"
56
+ skip = ["legacy_libs"]
57
+
58
+ [tool.black]
59
+ exclude = '''
60
+ /(
61
+ \.mypy_cache
62
+ | \.env
63
+ | \.venv
64
+ )/
65
+ '''
66
+
67
+ line-length = 88
68
+ target-version = ['py311']
69
+ required-version = '23.11.0'
70
+ [tool.ruff]
71
+ select = [
72
+ "E", # pycodestyle errors
73
+ "W", # pycodestyle warnings
74
+ "F", # pyflakes
75
+ # "I", # isort # using isort for now
76
+ "C", # flake8-comprehensions
77
+ "B", # flake8-bugbear
78
+ "UP", # pyupgrade
79
+ ]
80
+ ignore = [
81
+ "E501", # line too long, handled by black
82
+ # "B008", # do not perform function calls in argument defaults
83
+ # "C901", # too complex
84
+ # "W191", # indentation contains tabs
85
+ ]
86
+ exclude = ["legacy_libs/"]
87
+
88
+ [tool.mypy]
89
+ files = ["piceli"]
90
+ warn_unused_configs = true
91
+ ignore_missing_imports = true
92
+ disallow_untyped_defs = true
93
+ disallow_incomplete_defs = true
94
+ exclude = '(venv|env|legacy_libs)'
95
+ show_error_codes = true
96
+ pretty = true
97
+ allow_redefinition = true
98
+ no_implicit_optional = true
99
+ strict_equality = true
100
+
101
+ [tool.pytest]
102
+ log_cli = true
103
+
104
+ [tool.pytest.ini_options]
105
+ filterwarnings = [
106
+ "ignore:Running in a secondary thread. Signal handling will be skipped.:UserWarning",
107
+ "ignore::pytest.PytestUnhandledThreadExceptionWarning",
108
+ ]
109
+ timeout = 15
110
+
111
+ [tool.coverage.run]
112
+ omit = [
113
+ "tests/*", # Exclude all files in the tests directory
114
+ "legacy_libs/*", # Exclude all files in the legacy_libs directory
115
+ ]
116
+ relative_files = true # to combine coverage data from multiple processes
117
+
118
+ [tool.coverage.report]
119
+ exclude_lines = [
120
+ "pragma: no cover",
121
+ "if (typing\\.)?TYPE_CHECKING:",
122
+ "^\\s*\\.\\.\\.\\s*$", # ... ellipsis
123
+ "if __name__ == .__main__.:",
124
+ ]