|
|
@ -0,0 +1,14 @@ |
|
|
|
#!/usr/bin/env python |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
|
|
|
from distutils.core import setup |
|
|
|
|
|
|
|
setup(name='pypiwik', |
|
|
|
version='0.1', |
|
|
|
description='Python implementation of the Piwik HTTP API', |
|
|
|
author='Johann Schmitz', |
|
|
|
author_email='johann@j-schmitz.net', |
|
|
|
url='https://ercpe.de/projects/pypiwik', |
|
|
|
packages=['pypiwik'], |
|
|
|
package_dir={'': 'src'}, |
|
|
|
) |