forked from mahrtayyab/tweety
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 759 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 759 Bytes
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
from distutils.core import setup
setup(
name='tweety-ns',
packages=['tweety', 'tweety.types', 'tweety.events'],
version='1.1.2',
license='MIT',
description='An easy Twitter Scraper',
author='Tayyab Kharl',
author_email='tayyabmahr@gmail.com',
url='https://github.com/mahrtayyab/tweety',
keywords=['TWITTER', 'TWITTER SCRAPE', 'SCRAPE TWEETS'],
install_requires=[
'beautifulsoup4',
'openpyxl',
'httpx',
'dateutils',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
)