nato-converter/setup.py

16 lines
452 B
Python
Raw Normal View History

2014-12-16 20:26:00 +00:00
#!/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"],
)