15 lines
410 B
Python
Executable file
15 lines
410 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
# Author: Hubert Kario
|
|
# Released under Gnu GPL v2.0, see LICENSE file for details
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name="tlsfuzzer",
|
|
version="0.0.1",
|
|
author="Hubert Kario",
|
|
author_email="hkario@redhat.com",
|
|
url="https://github.com/tlsfuzzer/tlsfuzzer",
|
|
description="TLS test suite and fuzzer.",
|
|
license="GPLv2",
|
|
packages=["tlsfuzzer"])
|