fuso 0.1.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.
fuso-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.3
2
+ Name: fuso
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Jens Peder Meldgaard
6
+ Author-email: Jens Peder Meldgaard <jenspederm@gmail.com>
7
+ Requires-Python: >=3.11
8
+ Project-URL: Homepage, https://github.com/jenspederm/fuso
9
+ Project-URL: Issues, https://github.com/jenspederm/fuso/issues
10
+ Description-Content-Type: text/markdown
11
+
fuso-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,61 @@
1
+ [project]
2
+ name = "fuso"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [{ name = "Jens Peder Meldgaard", email = "jenspederm@gmail.com" }]
7
+ requires-python = ">=3.11"
8
+ dependencies = []
9
+
10
+ [project.urls]
11
+ Homepage = "https://github.com/jenspederm/fuso"
12
+ Issues = "https://github.com/jenspederm/fuso/issues"
13
+
14
+ [build-system]
15
+ requires = ["uv_build>=0.9.15,<0.10.0"]
16
+ build-backend = "uv_build"
17
+
18
+ [dependency-groups]
19
+ dev = [
20
+ "pre-commit>=4.5.0",
21
+ "pytest>=9.0.2",
22
+ "pytest-cov>=7.0.0",
23
+ "ruff>=0.14.9",
24
+ "ty>=0.0.1a34",
25
+ ]
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/fuso"]
29
+
30
+ [tool.pytest.ini_options]
31
+ testpaths = ["tests"]
32
+ addopts = [
33
+ '--log-format="%(asctime)s %(levelname)s %(message)s"',
34
+ '--log-date-format="%Y-%m-%d %H:%M:%S"',
35
+ '--cov-report=term-missing',
36
+ '--cov-report=xml:coverage.xml',
37
+ '--junit-xml=coverage.junit.xml',
38
+ '--cov=fuso',
39
+ '--no-cov-on-fail',
40
+ '--cov-fail-under=70',
41
+ '--ignore-glob="develop-eggs/*"',
42
+ '-ra',
43
+ '-vv',
44
+ '-x',
45
+ ]
46
+
47
+ [tool.ruff]
48
+ line-length = 88
49
+ show-fixes = true
50
+ lint.select = [
51
+ "F", # Pyflakes
52
+ "W", # pycodestyle
53
+ "E", # pycodestyle
54
+ "I", # isort
55
+ "UP", # pyupgrade
56
+ "PL", # Pylint
57
+ "T201", # Print Statement
58
+ ]
59
+
60
+ [tool.ruff.lint.per-file-ignores]
61
+ "{tests,features}/*" = ["T201", "PLR2004", "PLR0915", "PLW1510"]
@@ -0,0 +1,4 @@
1
+ def main() -> str:
2
+ msg = "Welcome to Fuso!"
3
+ print(msg) # noqa: T201
4
+ return msg