You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
650 B
21 lines
650 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from pypiwik import VERSION
|
|
|
|
setup(
|
|
name='python-piwik', # The name is 'pypiwik' but it's taken on PyPI by an abandoned project
|
|
version=VERSION,
|
|
description='Python implementation of the Piwik HTTP API',
|
|
# long_description=open('README.md').read(),
|
|
author='Johann Schmitz',
|
|
author_email='johann@j-schmitz.net',
|
|
url='https://ercpe.de/projects/pypiwik',
|
|
download_url='https://code.not-your-server.de/pypiwik.git/tags/',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
license='GPL-3',
|
|
)
|