Skip to content

Commit

Permalink
feat: Minimal setup.py package
Browse files Browse the repository at this point in the history
  • Loading branch information
shoutsid committed Oct 18, 2023
1 parent 60b2b50 commit 47dcc29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ __pycache__/
.cache/
*.db
.benchmarks/
.pytest_cache/
.pytest_cache/
build/
dist/
townhall.egg-info/
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup, find_packages

setup(name='townhall', version='0.1', packages=find_packages())

0 comments on commit 47dcc29

Please sign in to comment.