forked from dom-devel/daily_google_analytics_v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 869 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="daily-google-analytics-v3",
packages=find_packages(exclude=("tests",)),
version="0.1",
license="MIT",
description="A library for downloading daily GA data to a pandas dataframe or CSV using v3 of the API.",
author="Dominic Woodman",
author_email="[email protected]",
url="https://github.com/dom-devel/daily_google_analytics_to_df_or_csv",
# include_package_data=True,
download_url="https://github.com/dom-devel/daily_google_analytics_to_df_or_csv/archive/0.1.tar.gz",
keywords=["google analytics", "pandas"],
install_requires=["pandas", "httplib2", "google-api-python-client", "oauth2client"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)