Skip to content

Commit

Permalink
Improve setup.py for local install
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinMeimar committed Oct 17, 2024
1 parent eb9a16d commit 7dd57b0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name="dragon-runner",
version="0.1.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'dragon-runner=dragon_runner.main:main',
],
},
)

if __name__ == "__main__":
setup()

0 comments on commit 7dd57b0

Please sign in to comment.