-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (19 loc) · 810 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
"""PyAnalytics setup script."""
from setuptools import setup
setup(
name='pyanalytics',
version='0.0.1',
packages=['pyanalytics'],
# metadata for upload to PyPI
author='Love Sharma',
author_email='[email protected]',
description=('Google Analytics collection api - now use it in server'
' as well (not just client). You can track your server'
' side request / API request which are not possible'
' using client js of Google Analytics.'),
license='MIT',
keywords='google analytics pyanalytics python track server client api'.split(),
url='https://github.com/zonito/pyanalytics', # project homepage
download_url='https://github.com/zonito/pyanalytics/archive/0.0.1.tar.gz',
py_modules=['pyanalytics']
)