-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
51 lines (46 loc) · 1.06 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
45
46
47
48
49
50
51
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"Data Feed Manager Setup file"
from distutils.core import setup
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='dfm',
version='0.3',
description='Dynamic Feed Manager',
long_description=readme,
author='Alexandre CABROL PERALES',
author_email='[email protected]',
url='https://github.com/soprasteria/cybersecurity-dfm',
license=license,
install_requires=[
'feedparser',
'tweepy',
'newspaper',
'readability-lxml',
'bs4',
'langdetect',
'unicodecsv',
'iso8601',
'flask',
'flask-restful',
'Werkzeug',
'elasticsearch',
'Sphinx',
'sphinxcontrib-httpdomain',
'praw',
'pycallgraph',
'pylint',
'sphinx-pyreverse',
'sphinx_rtd_theme',
'sphinx_git',
'selenium',
'textract',
'python-magic',
'sumy'
],
packages=find_packages(exclude=('tests','utils'))
)