diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-12-11 12:04:03 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-12-11 12:04:03 +0100 |
commit | c5041c5894f559b42e2ae26c09ad793a925168fc (patch) | |
tree | efd5e1ed3fb4b64e945fd3637c5e0833b1d986e3 /tools/tai64dec/setup.py | |
parent | 5c48b7e2f3dc8c2afe49cb6e8eeeca0def4d6f59 (diff) | |
download | nixos-c5041c5894f559b42e2ae26c09ad793a925168fc.tar nixos-c5041c5894f559b42e2ae26c09ad793a925168fc.tar.gz nixos-c5041c5894f559b42e2ae26c09ad793a925168fc.tar.bz2 nixos-c5041c5894f559b42e2ae26c09ad793a925168fc.tar.xz nixos-c5041c5894f559b42e2ae26c09ad793a925168fc.zip |
custom tai64dec
Diffstat (limited to 'tools/tai64dec/setup.py')
-rw-r--r-- | tools/tai64dec/setup.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/tai64dec/setup.py b/tools/tai64dec/setup.py new file mode 100644 index 00000000..d936796b --- /dev/null +++ b/tools/tai64dec/setup.py | |||
@@ -0,0 +1,10 @@ | |||
1 | from setuptools import setup | ||
2 | |||
3 | setup(name='tai64dec', | ||
4 | packages=['tai64dec'], | ||
5 | entry_points={ | ||
6 | 'console_scripts': [ | ||
7 | 'tai64dec=tai64dec.__main__:main' | ||
8 | ], | ||
9 | }, | ||
10 | ) | ||