polylint 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,25 @@
1
+ /target
2
+ .polylint/
3
+
4
+ # BEGIN ai-rulez (DO NOT EDIT - managed by ai-rulez)
5
+ .agents/
6
+ .ai-rulez/.generated-manifest.json
7
+ .claude/
8
+ .cline/
9
+ .clinerules/
10
+ .codex/
11
+ .continue/
12
+ .cursor/
13
+ .gemini/
14
+ .github/agents/
15
+ .github/commands/
16
+ .github/copilot-instructions.md
17
+ .github/skills/
18
+ .junie/
19
+ .mcp.json
20
+ .opencode/
21
+ .windsurf/
22
+ AGENTS.md
23
+ CLAUDE.md
24
+ GEMINI.md
25
+ # END ai-rulez
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: polylint
3
+ Version: 0.0.1
4
+ Summary: Universal zero-dependency linter & formatter (poly) — name reservation placeholder
5
+ Project-URL: Homepage, https://github.com/Goldziher/polylint
6
+ Project-URL: Repository, https://github.com/Goldziher/polylint
7
+ Project-URL: Issues, https://github.com/Goldziher/polylint/issues
8
+ Author-email: Na'aman Hirschfeld <nhirschfeld@gmail.com>
9
+ License-Expression: MIT OR Apache-2.0
10
+ Keywords: format,formatter,lint,linter,polyglot
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Programming Language :: Rust
13
+ Classifier: Topic :: Software Development :: Quality Assurance
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+
17
+ # polylint
18
+
19
+ Name-reservation placeholder for [**poly**](https://github.com/Goldziher/polylint), a universal
20
+ zero-dependency linter & formatter shipped as two pure-Rust binaries (`polylint` + `polyfmt`).
21
+
22
+ This `0.0.1` release only reserves the name. A future release will turn this into a thin installer
23
+ that downloads the matching prebuilt binary.
24
+
25
+ Until then, install poly via the script, `cargo binstall`, or Homebrew — see the
26
+ [project README](https://github.com/Goldziher/polylint).
@@ -0,0 +1,10 @@
1
+ # polylint
2
+
3
+ Name-reservation placeholder for [**poly**](https://github.com/Goldziher/polylint), a universal
4
+ zero-dependency linter & formatter shipped as two pure-Rust binaries (`polylint` + `polyfmt`).
5
+
6
+ This `0.0.1` release only reserves the name. A future release will turn this into a thin installer
7
+ that downloads the matching prebuilt binary.
8
+
9
+ Until then, install poly via the script, `cargo binstall`, or Homebrew — see the
10
+ [project README](https://github.com/Goldziher/polylint).
@@ -0,0 +1,9 @@
1
+ """polylint — placeholder for the ``poly`` universal linter & formatter.
2
+
3
+ This 0.0.1 release reserves the ``polylint`` name on PyPI. The real
4
+ distribution ships prebuilt, platform-specific binaries (``poly``, ``polylint``,
5
+ ``polyfmt``); install them via the script at
6
+ https://github.com/Goldziher/polylint, ``cargo binstall``, or Homebrew.
7
+ """
8
+
9
+ __version__ = "0.0.1"
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "polylint"
7
+ version = "0.0.1"
8
+ description = "Universal zero-dependency linter & formatter (poly) — name reservation placeholder"
9
+ readme = "README.md"
10
+ license = "MIT OR Apache-2.0"
11
+ requires-python = ">=3.8"
12
+ authors = [{ name = "Na'aman Hirschfeld", email = "nhirschfeld@gmail.com" }]
13
+ keywords = ["linter", "formatter", "lint", "format", "polyglot"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Programming Language :: Rust",
17
+ "Topic :: Software Development :: Quality Assurance",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/Goldziher/polylint"
22
+ Repository = "https://github.com/Goldziher/polylint"
23
+ Issues = "https://github.com/Goldziher/polylint/issues"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["polylint"]