mirror of
https://github.com/qeeqbox/social-analyzer.git
synced 2026-05-26 13:54:38 +00:00
26 lines
865 B
Python
26 lines
865 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open('README.rst', 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='social-analyzer',
|
|
author='QeeqBox',
|
|
author_email='gigaqeeq@gmail.com',
|
|
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.4',
|
|
license='AGPL-3.0',
|
|
url='https://github.com/qeeqbox/social-analyzer',
|
|
packages=['socialanalyzer'],
|
|
include_package_data=True,
|
|
entry_points={'console_scripts': ['social_analyzer = social_analyzer.__main__:main']},
|
|
install_requires=['BeautifulSoup4', 'tld', 'pygments', 'langdetect', 'requests'],
|
|
package_data={'social-analyzer': ['data/*']},
|
|
python_requires='>=3',
|
|
)
|
|
|