forked from adswerve/universal-analytics-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (19 loc) · 770 Bytes
/
setup.py
File metadata and controls
29 lines (19 loc) · 770 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
from setuptools import setup
VERSION="0.2"
try:
long_description=open('DESCRIPTION.rst', 'rt').read()
except Exception:
long_description="Universal Analytics in Python; an implementation of Google's Universal Analytics Measurement Protocol"
setup(
name = "universal-analytics-python",
description = "Universal Analytics Python Module",
long_description = long_description,
version = VERSION,
author = 'Sam Briesemeister',
author_email = 'opensource@analyticspros.com',
url = 'https://github.com/analytics-pros/universal-analytics-python',
download_url = "https://github.com/analytics-pros/universal-analytics-python/tarball/" + VERSION,
license = 'BSD',
packages = ["UniversalAnalytics"],
zip_safe = True,
)