forked from clintecker/python-googleanalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1016 Bytes
/
setup.py
File metadata and controls
37 lines (31 loc) · 1016 Bytes
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
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
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "python-googleanalytics",
version = "1.0",
url = 'https://github.com/clintecker/python-googleanalytics',
license = 'BSD',
description = "A python library for talking to the Google Analytics API",
long_description = read('README.md'),
author = 'Clint Ecker',
author_email = 'me@clintecker.com',
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',
'Topic :: Internet',
]
)