-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
34 lines (28 loc) · 935 Bytes
/
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
import sys
if sys.version_info < (2, 5):
print >> sys.stderr, '%s: need Python 2.5 or later.' % sys.argv[0]
print >> sys.stderror, 'Your python is %s' % sys.version
sys.exit(1)
import os
from setuptools import setup, find_packages
setup(
name = "python-googleanalytics",
version = "1.0.2",
url = 'https://github.com/clintecker/python-googleanalytics',
license = 'BSD',
description = "A python library for talking to the Google Analytics API",
author = 'Clint Ecker',
author_email = '[email protected]',
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = ['setuptools',],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Topic :: Internet',
]
)