Skip to content

Commit 3963ea7

Browse files
committed
initial commit
0 parents  commit 3963ea7

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Whitespace-only changes.

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "import-rewriter"
7+
version = "0.1.0"
8+
description = "Import rewriter"
9+
readme = "README.md"
10+
authors = [
11+
{ name = "Daniel Copley", email = "[email protected]" }
12+
]
13+
requires-python = ">=3.9"
14+
dependencies = []

src/import_rewriter/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def main() -> None:
2+
print("Hello from import-rewrite!")

0 commit comments

Comments
 (0)