-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.12 KB
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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='FacebookPostsAnalysis',
version='0.1.3',
description='Application to analyze the posts of a Facebook page/group.',
long_description=long_description,
author='Igor Rosocha',
author_email='rosocigo@fit.cvut.cz',
keywords='facebook,group,page,post,analysis',
license='MIT',
url='https://github.com/IgorRosocha/FacebookPostsAnalysis',
packages=find_packages(),
python_requires='~=3.6',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Framework :: Jupyter',
'Environment :: Console'
],
install_requires=[
'click>=6',
'requests',
'nbformat'
],
zip_safe=False,
entry_points={
'console_scripts': [
'analysis = FacebookPostsAnalysis.analysis:main',
],
},
)