forked from debrouwere/python-omniture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 1.09 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
from setuptools import setup, find_packages
setup(name='omni2re',
description='A wrapper for the Adobe Omniture and SiteCatalyst web analytics API.',
long_description='Please see README.md at http://github.com/colemanja91/python-omniture/',
author='Stijn Debrouwere, Jeremiah Coleman',
author_email='[email protected], [email protected]',
url='http://github.com/colemanja91/python-omniture/',
download_url='http://www.github.com/colemanja91/python-omniture/tarball/master',
version='0.4.2',
license='MIT',
packages=find_packages(),
keywords='data analytics api wrapper adobe',
install_requires=[
'requests',
'python-dateutil',
],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)