mirror of
https://github.com/adulau/nato-converter.git
synced 2024-11-21 09:37:08 +00:00
15 lines
452 B
Python
15 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"],
|
|
)
|