-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
25 lines (24 loc) · 1020 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
from setuptools import setup, find_packages
setup(name='omniture',
description='A wrapper for the Adobe Omniture and SiteCatalyst web analytics API.',
long_description=open('README.md').read(),
author='Stijn Debrouwere',
author_email='[email protected]',
url='http://stdbrouw.github.com/python-omniture/',
download_url='http://www.github.com/stdbrouw/python-omniture/tarball/master',
version='0.3.1',
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',
],
)