forked from qeeqbox/social-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·24 lines (21 loc) · 826 Bytes
/
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst', 'r') as fh:
long_description = fh.read()
setup(
name='social-analyzer',
author='QeeqBox',
author_email='[email protected]',
description="API, CLI & Web App for analyzing & finding a person's profile across 300+ social media websites (Detections are updated regularly)",
long_description=long_description,
version='0.45',
license='AGPL-3.0',
url='https://github.com/qeeqbox/social-analyzer',
packages=['social-analyzer'],
include_package_data=True,
scripts=['social-analyzer/social-analyzer'],
install_requires=['BeautifulSoup4', 'tld', 'termcolor', 'langdetect', 'requests', 'lxml', 'galeodes'],
package_data={'social-analyzer': ['data/*']},
python_requires='>=3',
)