dscribe-dq 0.0.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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: dscribe-dq
3
+ Version: 0.0.1
4
+ Summary: Automatically generated by Nx.
5
+ License: Proprietary
6
+ Requires-Python: >=3.13,<3.14
7
+ Classifier: License :: Other/Proprietary License
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Description-Content-Type: text/markdown
11
+
12
+ # libs/dscribe-dq
13
+
14
+ Project description here.
15
+
@@ -0,0 +1,3 @@
1
+ # libs/dscribe-dq
2
+
3
+ Project description here.
@@ -0,0 +1 @@
1
+ """Automatically generated by Nx."""
@@ -0,0 +1,6 @@
1
+ """Sample Hello World application."""
2
+
3
+
4
+ def hello():
5
+ """Return a friendly greeting."""
6
+ return "Hello libs/dscribe-dq"
@@ -0,0 +1,34 @@
1
+ [tool.coverage.run]
2
+ branch = true
3
+ source = [ "dscribe_dq" ]
4
+
5
+ [tool.coverage.report]
6
+ exclude_lines = ['if TYPE_CHECKING:']
7
+ show_missing = true
8
+
9
+ [tool.pytest.ini_options]
10
+ addopts = """
11
+ --cov
12
+ --cov-report html:'../../coverage/libs/dscribe-dq/html'
13
+ --cov-report xml:'../../coverage/libs/dscribe-dq/coverage.xml'
14
+ --html='../../reports/libs/dscribe-dq/unittests/html/index.html'
15
+ --junitxml='../../reports/libs/dscribe-dq/unittests/junit.xml'
16
+ """
17
+
18
+ [tool.poetry]
19
+ name = "dscribe-dq"
20
+ version = "0.0.1"
21
+ description = "Automatically generated by Nx."
22
+ authors = [ ]
23
+ license = 'Proprietary'
24
+ readme = 'README.md'
25
+
26
+ [[tool.poetry.packages]]
27
+ include = "dscribe_dq"
28
+
29
+ [tool.poetry.dependencies]
30
+ python = ">=3.13,<3.14"
31
+
32
+ [build-system]
33
+ requires = ["poetry-core"]
34
+ build-backend = "poetry.core.masonry.api"