We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 3963ea7Copy full SHA for 3963ea7
.gitignore
@@ -0,0 +1,13 @@
1
+# Python-generated files
2
+__pycache__/
3
+*.py[oc]
4
+build/
5
+dist/
6
+wheels/
7
+*.egg-info
8
+
9
+# Virtual environments
10
+.venv
11
12
+# JetBrains
13
+.idea/
README.md
pyproject.toml
@@ -0,0 +1,14 @@
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+[project]
+name = "import-rewriter"
+version = "0.1.0"
+description = "Import rewriter"
+readme = "README.md"
+authors = [
+ { name = "Daniel Copley", email = "[email protected]" }
+]
+requires-python = ">=3.9"
14
+dependencies = []
src/import_rewriter/__init__.py
@@ -0,0 +1,2 @@
+def main() -> None:
+ print("Hello from import-rewrite!")
0 commit comments