apisani-test-project 0.1.1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Antonio Pisani
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.
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.3
2
+ Name: apisani-test-project
3
+ Version: 0.1.1
4
+ Summary: A short description of the project
5
+ Author: Antonio Pisani
6
+ Author-email: antonio.pisani@gmail.com
7
+ Requires-Python: >=3.10,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Project-URL: Documentation, https://apisani-test-project.readthedocs.io/
14
+ Project-URL: Issue Tracker, https://github.com/apisani1/apisani-test-project/issues
15
+ Project-URL: Release Notes, https://github.com/apisani1/apisani-test-project/releases
16
+ Project-URL: Source Code, https://github.com/apisani1/apisani-test-project
17
+ Description-Content-Type: text/markdown
18
+
19
+ # apisani-test-project
20
+
21
+ A short description of the project
22
+
23
+ ## Overview
24
+
25
+ This documentation covers the apisani-test-project library.
26
+
27
+ ## Installation
28
+
29
+ ```bash
30
+ pip install apisani-test-project
31
+ ```
32
+
33
+ Or, if you use Poetry:
34
+
35
+ ```bash
36
+ poetry add apisani-test-project
37
+ ```
38
+
39
+ ## Quick Start
40
+
41
+ ```python
42
+ from apisani_test_project import Example
43
+
44
+ # Initialize
45
+ example = Example()
46
+
47
+ # Use the library
48
+ result = example.run()
49
+ print(result)
50
+ ```
51
+
@@ -0,0 +1,32 @@
1
+ # apisani-test-project
2
+
3
+ A short description of the project
4
+
5
+ ## Overview
6
+
7
+ This documentation covers the apisani-test-project library.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pip install apisani-test-project
13
+ ```
14
+
15
+ Or, if you use Poetry:
16
+
17
+ ```bash
18
+ poetry add apisani-test-project
19
+ ```
20
+
21
+ ## Quick Start
22
+
23
+ ```python
24
+ from apisani_test_project import Example
25
+
26
+ # Initialize
27
+ example = Example()
28
+
29
+ # Use the library
30
+ result = example.run()
31
+ print(result)
32
+ ```
@@ -0,0 +1,215 @@
1
+ [build-system]
2
+ requires = ["poetry-core"]
3
+ build-backend = "poetry.core.masonry.api"
4
+
5
+ [tool.poetry]
6
+ name = "apisani-test-project"
7
+ version = "0.1.1"
8
+ description = "A short description of the project"
9
+ authors = ["Antonio Pisani <antonio.pisani@gmail.com>"]
10
+ readme = "README.md"
11
+ packages = [{ include = "apisani_test_project", from = "src" }]
12
+
13
+ [tool.poetry.urls]
14
+ "Source Code" = "https://github.com/apisani1/apisani-test-project"
15
+ "Release Notes" = "https://github.com/apisani1/apisani-test-project/releases"
16
+ "Documentation" = "https://apisani-test-project.readthedocs.io/"
17
+ "Issue Tracker" = "https://github.com/apisani1/apisani-test-project/issues"
18
+
19
+ [tool.semantic_release]
20
+ version_variable = [
21
+ "pyproject.toml:version",
22
+ "docs/conf.py:release",
23
+ "src/__init__.py:__version__",
24
+ ]
25
+
26
+ [tool.poetry.dependencies]
27
+ python = "^3.10"
28
+
29
+ [tool.poetry.group.dev]
30
+ optional = true
31
+
32
+ [tool.poetry.group.dev.dependencies]
33
+ ipykernel = "^6.29.5"
34
+ python-dotenv = "^1.1.0"
35
+
36
+ [tool.poetry.group.test]
37
+ optional = true
38
+
39
+ [tool.poetry.group.test.dependencies]
40
+ pytest = "^7.4.0"
41
+ pytest-asyncio = "^0.21.0"
42
+ pytest-cov = "^6.1.0"
43
+
44
+ [tool.poetry.group.lint]
45
+ optional = true
46
+
47
+ [tool.poetry.group.lint.dependencies]
48
+ flake8 = "^7.1.0"
49
+ flake8-pyproject = "^1.2.0"
50
+ pylint = "^3.3.0"
51
+ black = "^25.1.0"
52
+ isort = "^6.0.0"
53
+
54
+ [tool.poetry.group.typing]
55
+ optional = true
56
+
57
+ [tool.poetry.group.typing.dependencies]
58
+ mypy = "^1.15"
59
+
60
+ [tool.poetry.group.docs]
61
+ optional = true
62
+
63
+ [tool.poetry.group.docs.dependencies]
64
+ sphinx = "^8.1.3"
65
+ sphinx-rtd-theme = "^3.0.2"
66
+ myst-parser = "^4.0.0"
67
+ sphinx-copybutton = "^0.5.2"
68
+ sphinx-autobuild = "^2021.3.14"
69
+ sphinx-sitemap = "^2.6.0"
70
+ sphinx-tabs = "^3.4.7"
71
+ doc8 = ">=0.8.0"
72
+
73
+ [tool.black]
74
+ line-length = 119
75
+
76
+ [tool.flake8]
77
+ extend-ignore = [
78
+ "W503",
79
+ # E501: Line too long
80
+ "E501",
81
+ # D100: Missing docstring in public module
82
+ "D100",
83
+ # D101: Missing docstring in public class
84
+ "D101",
85
+ # D102: Missing docstring in public method
86
+ "D102",
87
+ # D103: Missing docstring in public function
88
+ "D103",
89
+ # D104: Missing docstring in public package
90
+ "D104",
91
+ # W605: Invalid escape sequence
92
+ "W605",
93
+ # E203: Whitespace before ':'
94
+ "E203",
95
+ ]
96
+ exclude = [
97
+ # "docs",
98
+ # "tests",
99
+ ".venv",
100
+ ".git",
101
+ "__pycache__",
102
+ "build",
103
+ "dist",
104
+ ]
105
+ radon-max-cc = 15
106
+ max-line-length = 119
107
+
108
+ [tool.mypy]
109
+ # exclude = '^(tests\/test.*\.py|docs\/.*\.py)$'
110
+ python_version = "3.10"
111
+
112
+ warn_unused_configs = true
113
+ disallow_untyped_defs = true
114
+ disallow_incomplete_defs = true
115
+ ignore_missing_imports = true
116
+ show_error_codes = true
117
+ warn_unused_ignores = true
118
+
119
+ [tool.pylint.MESSAGES_CONTROL]
120
+ disable = [
121
+ "raw-checker-failed",
122
+ "bad-inline-option",
123
+ "locally-disabled",
124
+ "file-ignored",
125
+ "suppressed-message",
126
+ "useless-suppression",
127
+ "deprecated-pragma",
128
+ "use-symbolic-message-instead",
129
+ "use-implicit-booleaness-not-comparison-to-string",
130
+ "use-implicit-booleaness-not-comparison-to-zero",
131
+ "missing-module-docstring",
132
+ "missing-function-docstring",
133
+ "missing-class-docstring",
134
+ "no-self-argument",
135
+ "broad-exception-caught",
136
+ "anomalous-backslash-in-string",
137
+ "logging-fstring-interpolation",
138
+ "raise-missing-from",
139
+ "redefined-builtin",
140
+ "invalid-overridden-method",
141
+ "unspecified-encoding",
142
+ "import-outside-toplevel",
143
+ "global-statement",
144
+ "global-variable-not-assigned",
145
+ ]
146
+
147
+ [tool.pylint.FORMAT]
148
+ max-line-length = 119
149
+
150
+ [tool.pylint.MASTER]
151
+ ignore = [
152
+ # "tests",
153
+ # "docs",
154
+ ".venv",
155
+ ".git",
156
+ "__pycache__",
157
+ "build",
158
+ "dist",
159
+ ]
160
+
161
+ [tool.isort]
162
+ profile = "black"
163
+ known_third_party = [
164
+ "numpy",
165
+ "pandas",
166
+ "keras",
167
+ "tensorflow",
168
+ "sklearn",
169
+ "matplotlib",
170
+ "scipy",
171
+ "h5py",
172
+ "seaborn",
173
+ "numba",
174
+ "gym",
175
+ "PyQt6",
176
+ "PyQt5",
177
+ "pyqtgraph",
178
+ "fastapi",
179
+ "pytest",
180
+ "uvicorn",
181
+ "pydantic",
182
+ "requests",
183
+ "aiohttp",
184
+ "databases",
185
+ "aioredis",
186
+ "sqlalchemy",
187
+ "psycopg2-binary",
188
+ "snappy",
189
+ "asyncpg",
190
+ "pytest_asyncio",
191
+ ]
192
+ force_single_line = false
193
+ multi_line_output = 3
194
+ force_grid_wrap = 2
195
+ use_parentheses = true
196
+ include_trailing_comma = true
197
+ lines_after_imports = 2
198
+ ensure_newline_before_comments = true
199
+ line_length = 119
200
+ sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
201
+ default_section = "FIRSTPARTY"
202
+ extend_skip = [
203
+ # "tests",
204
+ # "docs",
205
+ ".venv",
206
+ ".git",
207
+ "__pycache__",
208
+ "build",
209
+ "dist",
210
+ ]
211
+
212
+ [tool.doc8]
213
+ max-line-length = 120
214
+ ignore = ["D004", "D002"]
215
+ ignore-path = ["docs/_build"]
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"