|
|
@ -1,14 +1,18 @@ |
|
|
|
#!/usr/bin/env python |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
|
|
|
from distutils.core import setup |
|
|
|
from setuptools import setup, find_packages |
|
|
|
|
|
|
|
setup(name='pypiwik', |
|
|
|
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'}, |
|
|
|
download_url='https://code.not-your-server.de/pypiwik.git/tags/', |
|
|
|
packages=find_packages(), |
|
|
|
include_package_data=True, |
|
|
|
zip_safe=False, |
|
|
|
license='GPL-3', |
|
|
|
) |