返回 social-analyzer
setup.py
根目录 / setup.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3
4 from setuptools import setup
5
6 with open('README.rst', 'r') as fh:
7 long_description = fh.read()
8
9 setup(
10 name='social-analyzer',
11 author='QeeqBox',
12 author_email='gigaqeeq@gmail.com',
13 description="API, CLI & Web App for analyzing & finding a person's profile across 300+ social media websites (Detections are updated regularly)",
14 long_description=long_description,
15 version='0.45',
16 license='AGPL-3.0',
17 url='https://github.com/qeeqbox/social-analyzer',
18 packages=['social-analyzer'],
19 include_package_data=True,
20 scripts=['social-analyzer/social-analyzer'],
21 install_requires=['BeautifulSoup4', 'tld', 'termcolor', 'langdetect', 'requests', 'lxml', 'galeodes'],
22 package_data={'social-analyzer': ['data/*']},
23 python_requires='>=3',
24 )
25
25 lines PYTHON