1 2 3 4 5 6 7 8 9 10
from setuptools import setup setup(name='tai64dec', packages=['tai64dec'], entry_points={ 'console_scripts': [ 'tai64dec=tai64dec.__main__:main' ], }, )