omnitrix-app/setup.py
2021-05-05 03:38:13 -04:00

11 lines
273 B
Python

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
)