-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.03 KB
/
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
35
36
37
from setuptools import setup
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'intake',
'pandas',
'google-api-python-client',
'google-auth-oauthlib'
]
setup(
name='intake-google-analytics',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Driver for Google Analytics queries",
license="BSD",
author="Albert DeFusco",
author_email='adefusco@anaconda.com',
url='https://github.com/Anaconda/intake-google-analytics',
packages=['intake_google_analytics'],
entry_points={
'intake.drivers': [
'google_analytics_query = intake_google_analytics.source:GoogleAnalyticsQuerySource',
]
},
install_requires=requirements,
keywords='intake-google-analytics',
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
long_description=long_description,
long_description_content_type='text/markdown'
)