mirror of
https://github.com/adulau/nato-converter.git
synced 2024-11-22 01:57:08 +00:00
16 lines
452 B
Python
16 lines
452 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
setup(name="Nato_converter",
|
||
|
version="0.1",
|
||
|
description="Convert list of character to the equivalent in Nato"+
|
||
|
"alphabet",
|
||
|
author="Xavier Claude",
|
||
|
author_email="contact+python@xavierclaude.be",
|
||
|
url="todo",
|
||
|
license="GPL2+",
|
||
|
scripts=["nato_converter.py"],
|
||
|
)
|