-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (32 loc) · 1.02 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
from __future__ import absolute_import
from distutils.util import convert_path
from setuptools import find_packages
from setuptools import setup
from io import open
ns = {}
version_path = convert_path('kochavareports/version.py')
with open(version_path, encoding='utf-8') as version_file:
exec(version_file.read(), ns)
setup_args = dict(
name='kochava-reports',
description='Python library to generate reports in the Kochava platform.',
url='https://github.com/webhue/kochava-reports',
version=ns['__version__'],
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests',
],
author='Marius Bodea',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
],
)
if __name__ == '__main__':
setup(**setup_args)