From 89db59bebeef69129a6a813f55349e1911de7374 Mon Sep 17 00:00:00 2001 From: superdimensional Date: Wed, 5 May 2021 03:38:13 -0400 Subject: [PATCH] pip setup script --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py 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 +)