-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
44 lines (43 loc) · 1.46 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
38
39
40
41
42
43
44
from setuptools import setup, find_packages
setup(name='facebookinsights',
description='A wrapper and command-line interface for the Facebook Insights API.',
long_description=open('README.rst').read(),
author='Stijn Debrouwere',
author_email='[email protected]',
#url='http://stdbrouw.github.com/facebook-insights/',
download_url='http://www.github.com/debrouwere/facebook-insights/tarball/master',
version='0.3.4',
license='ISC',
packages=find_packages(),
include_package_data=True,
keywords='data analytics api wrapper facebook insights',
entry_points = {
'console_scripts': [
'insights = insights.commands:main',
],
},
install_requires=[
'click',
'requests',
'rauth',
'facepy',
'python-dateutil',
'pytz',
'addressable',
'flask',
'keyring',
],
# test_suite='facebookinsights.tests',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)