forked from adswerve/universal-analytics-python
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (22 loc) · 932 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
28
29
30
31
32
33
34
from setuptools import setup
import sys
VERSION=open('commit-version').read().strip()
print >>sys.stderr, "Preparing version {0}\n".format(VERSION or "NOTFOUND")
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 or 'NOTFOUND',
author = 'Sam Briesemeister',
author_email = '[email protected]',
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"],
install_requires = [],
zip_safe = True,
)