forked from adswerve/GA4-Measurement-Protocol-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (21 loc) · 806 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
from setuptools import setup
import sys
try:
long_description=open('DESCRIPTION.rst', 'rt').read()
except Exception:
long_description="Google Analytics 4 Measurement Protocol in Python; an implementation of Google's Analytics 4 Measurement Protocol"
VERSION = '1.1.1'
setup(
name = "ga4mp",
description = "Google Analytics 4 Measurement Protocol Python Module",
long_description = long_description,
version = VERSION or 'NOTFOUND',
author = 'Nate Bukowski',
author_email = 'nate.bukowski@adswerve.com',
url = 'https://github.com/adswerve/GA4-Measurement-Protocol-Python',
download_url = "https://github.com/adswerve/GA4-Measurement-Protocol-Python" + VERSION,
license = 'BSD',
packages = ["ga4mp"],
install_requires = [],
zip_safe = True,
)