summaryrefslogtreecommitdiff
path: root/tools/tai64dec/setup.py
blob: d936796ba446a79894ec909de5021971965b441d (plain)
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'
          ],
      },
)