pip setup script

This commit is contained in:
superdimensional 2021-05-05 03:38:13 -04:00
parent 58a2a0c218
commit 89db59bebe

10
setup.py Normal file
View file

@ -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
)