-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 978 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='pysocialwatcher',
version='0.2a',
description='pySocialWatcher : Social Watcher through Facebook Marketing API',
url='https://github.com/maraujo/pySocialWatcher',
long_description="""
This package tries to get the full potencial of the Facebook Marketing API for Social Analysis research.
Recent works show that online social media has a huge potencial to provide interesting insights on trends of across demographic groups.
""",
author='Matheus Araujo - QCRI-HBKU',
author_email='arauj021@umn.edu',
license='MIT',
packages=['pysocialwatcher'],
classifiers=[
"Topic :: Sociology",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
zip_safe=False)