liteenv 0.0.0__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.
liteenv-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.3
2
+ Name: liteenv
3
+ Version: 0.0.0
4
+ Summary: Add your description here
5
+ Author: deependujha
6
+ Author-email: deependujha <deependujha21@gmail.com>
7
+ Classifier: Programming Language :: Python :: 3 :: Only
8
+ Classifier: Programming Language :: Python :: 3.12
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Classifier: Programming Language :: Python :: 3.14
11
+ Requires-Python: >=3.12
12
+ Description-Content-Type: text/markdown
13
+
14
+ # LiteEnv
@@ -0,0 +1 @@
1
+ # LiteEnv
@@ -0,0 +1,67 @@
1
+ [build-system]
2
+ build-backend = "uv_build"
3
+ requires = [ "uv-build>=0.10.8,<0.11" ]
4
+
5
+ [project]
6
+ name = "liteenv"
7
+ version = "0.0.0"
8
+ description = "Add your description here"
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "deependujha", email = "deependujha21@gmail.com" },
12
+ ]
13
+ requires-python = ">=3.12"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3 :: Only",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ "Programming Language :: Python :: 3.14",
19
+ ]
20
+ dependencies = [ ]
21
+
22
+ scripts.liteenv = "liteenv:main"
23
+
24
+ [dependency-groups]
25
+ dev = [
26
+ "mypy>=1.19.1",
27
+ "pre-commit>=4.5.1",
28
+ "pytest>=9.0.2",
29
+ "pytest-cov>=7.1",
30
+ "pytest-xdist>=3.8",
31
+ "ruff>=0.15.8",
32
+ ]
33
+
34
+ [tool.pytest.ini_options]
35
+ testpaths = [ "tests" ]
36
+ norecursedirs = [ ".git", ".github", "dist", "build", "docs" ]
37
+ addopts = [
38
+ "--strict-markers",
39
+ "--doctest-modules",
40
+ "--color=yes",
41
+ "--disable-pytest-warnings",
42
+ ]
43
+ markers = [ "cloud: Run the cloud tests for example" ]
44
+ filterwarnings = [ "error::FutureWarning" ]
45
+ xfail_strict = true
46
+ junit_duration_report = "call"
47
+
48
+ [tool.mypy]
49
+ files = [ "src" ]
50
+ exclude = [ ]
51
+ install_types = true
52
+ non_interactive = true
53
+ disallow_untyped_defs = true
54
+ ignore_missing_imports = true
55
+ show_error_codes = true
56
+ warn_redundant_casts = true
57
+ warn_unused_configs = true
58
+ warn_unused_ignores = true
59
+ allow_redefinition = true
60
+ disable_error_code = "attr-defined"
61
+ warn_no_return = false
62
+
63
+ [[tool.mypy.overrides]]
64
+ # generate with:
65
+ # mypy --no-error-summary 2>&1 | tr ':' ' ' | awk '{print $1}' | sort | uniq | sed 's/\.py//g; s|src/||g; s|\/|\.|g'
66
+ module = [ ]
67
+ ignore_errors = true
@@ -0,0 +1,5 @@
1
+ # credits: https://github.com/deependujha
2
+
3
+
4
+ def main() -> None:
5
+ print("Hello from liteenv!")