Skip to content

Commit

Permalink
Merge 6ee7e45 into 61f5c2f
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem committed Oct 2, 2018
2 parents 61f5c2f + 6ee7e45 commit 1425c2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions pyga/requests.py
Expand Up @@ -5,6 +5,7 @@
from math import floor
from pyga.entities import Campaign, CustomVariable, Event, Item, Page, Session, SocialInteraction, Transaction, Visitor
import pyga.utils as utils

try:
from urllib import urlencode
from urllib2 import Request as urllib_request
Expand Down
12 changes: 4 additions & 8 deletions setup.py
Expand Up @@ -3,25 +3,21 @@

import os
from setuptools import setup, find_packages
from pyga.requests import __version__, __license__


README = os.path.join(os.path.dirname(__file__), 'README.rst')
long_desc = open(README).read() + '\n\n'

setup(name='pyga',
version=__version__,
license=__license__,
version='2.5.2',
license='Simplified BSD',
author='Arun K.R.',
author_email='the1.arun@gmail.com',
url='http://kra3.github.com/py-ga-mob/',
description='Server side implementation of Google Analytics in Python.',
long_description=long_desc,
keywords='Google analytics mobile server side',
requires=[
'six',
],
install_requires=['setuptools', 'six'],
keywords='google analytics mobile server side',
install_requires=['setuptools',],
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
Expand Down

0 comments on commit 1425c2d

Please sign in to comment.