-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
executable file
·40 lines (36 loc) · 1.26 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding:utf8 -*-
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__,
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'],
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
test_suite='tests',
tests_require=['mock',]
)