-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 861 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
from setuptools import setup, find_packages
setup(
name='gscwrapper',
version='0.0.7',
packages=find_packages(),
install_requires=[
'google-api-python-client>=1.7.3',
'python-dateutil>=2.7.3',
'google-auth>=2.13.0',
'google-auth-oauthlib>=0.2.0',
'google.cloud==0.34.0',
'pandas==2.2.0',
'pandas_gbq==0.22.0',
'validators==0.23.2',
'tqdm==4.66.1',
'prophet==1.1.5',
'pycausalimpact==0.1.1',
'numpy==1.26.3',
'requests==2.31.0'
],
# Additional metadata about your package.
author='Antoine Eripret',
author_email='[email protected]',
description='A simple wrapper for Google Search Console API for SEO data analysis.',
url='https://github.com/antoineeripret/gsc_wrapper',
)