10 lines
269 B
Python
10 lines
269 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='omnitrix',
|
|
# 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
|
|
)
|