diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4bff1dc --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup( + name='omnitrix-app', +# This is the name of your PyPI-package. + version='0.1', +# Update the version number for new releases + scripts=['omnitrix'] +# The name of your scipt, and also the command you'll be using for calling it +)