fensu 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.
- fensu-0.0.1/PKG-INFO +19 -0
- fensu-0.0.1/README.md +7 -0
- fensu-0.0.1/pyproject.toml +20 -0
- fensu-0.0.1/src/fensu/__init__.py +3 -0
fensu-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fensu
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: An architecture linter for Python: enforces module boundaries and dependency rules. Early development.
|
|
5
|
+
License: MIT
|
|
6
|
+
Keywords: architecture,boundaries,imports,lint
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# Fensu
|
|
14
|
+
|
|
15
|
+
Fensu is an architecture linter for Python: it enforces module boundaries and
|
|
16
|
+
dependency rules across your codebase. The name comes from Japanese
|
|
17
|
+
フェンス (fensu), "fence".
|
|
18
|
+
|
|
19
|
+
Fensu is in early development; the first usable release will appear here.
|
fensu-0.0.1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fensu"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "An architecture linter for Python: enforces module boundaries and dependency rules. Early development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
keywords = ["lint", "architecture", "imports", "boundaries"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/fensu"]
|