11 lines
252 B
Python
11 lines
252 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name = "log4py",
|
||
|
version = "1.3",
|
||
|
description = "Python Logging Module",
|
||
|
py_modules = ["log4py"],
|
||
|
author = "Martin Preishuber <Martin.Preishuber@eclipt.at>"
|
||
|
)
|