-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathsetup.py
33 lines (31 loc) · 951 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
25
26
27
28
29
30
31
32
33
from distutils.core import setup
install_requires = [
"beautifulsoup4[lxml]~=4.12",
"openpyxl",
"httpx[http2]",
"dateutils",
"anticaptchaofficial",
"capsolver",
"2captcha-python",
"python-magic",
"python-magic-bin; platform_system == 'Windows'"
]
setup(
name='tweety-ns',
packages=['tweety', 'tweety.types', 'tweety.events', 'tweety.captcha'],
version='2.1',
license='MIT',
description='An easy Twitter Scraper',
author='Tayyab Kharl',
author_email='[email protected]',
url='https://github.com/mahrtayyab/tweety',
keywords=['TWITTER', 'TWITTER SCRAPE', 'SCRAPE TWEETS'],
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)