-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
executable file
·27 lines (25 loc) · 936 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
#! /usr/bin/env python
from setuptools import setup
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
name='google-measurement-protocol',
author='Mirumee Software',
author_email='[email protected]',
description=(
'A Python implementation of Google Analytics Measurement Protocol'),
license='BSD',
version='1.1.0',
packages=['google_measurement_protocol'],
install_requires=['requests>=2.0,<3.0a0', 'prices>=1.0.0', 'typing>=3.6.0;python_version<"3.5"'],
classifiers=CLASSIFIERS,
platforms=['any'])