diff --git a/envy/__init__.py b/envy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/envy/cli.py b/envy/cli.py new file mode 100644 index 0000000..8f7de42 --- /dev/null +++ b/envy/cli.py @@ -0,0 +1,2 @@ +def main(): + print 'hi' \ No newline at end of file diff --git a/envy/core.py b/envy/core.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 477e82b..16cfac9 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ settings.update( ), entry_points={ 'console_scripts': [ - 'pyenv = envy.cli:main', + 'envy = envy.cli:main', ], } )