14 lines
201 B
Python
Executable File
14 lines
201 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name="pyinfra",
|
|
version="0.0.1",
|
|
description="",
|
|
author="",
|
|
author_email="",
|
|
url="",
|
|
packages=["pyinfra"],
|
|
)
|