Skip to content

Commit 344e4df

Browse files
committed
refactor: proj structure
1 parent 11c4cda commit 344e4df

12 files changed

Lines changed: 290 additions & 284 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "flatcode"
9-
version = "0.1.0"
9+
version = "0.1.2"
1010
authors = [
1111
{ name="jaywang98", email="cryptojayw@gmail.com" },
1212
]

src/flatcode/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# src/flatcode/__init__.py

src/flatcode/__main__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# src/flatcode/__main__.py
2+
from flatcode.cli import main
3+
4+
if __name__ == "__main__":
5+
main()

0 commit comments

Comments
 (0)