-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
39 lines (35 loc) · 1.44 KB
/
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
34
35
36
37
38
39
from setuptools import setup, find_packages
VERSION = "2.0.8"
SHORT_DESCRIPTION = "TweeterPy is a python library to extract data from Twitter. TweeterPy API lets you scrape data from a user's profile like username, userid, bio, followers/followings list, profile media, tweets, etc."
with open("requirements.txt") as file:
dependencies = file.read().splitlines()
with open("README.md", "r") as file:
DESCRIPTION = file.read()
setup(
name="tweeterpy",
version=VERSION,
description=SHORT_DESCRIPTION,
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
author="Sarabjit Dhiman",
author_email="[email protected]",
license="MIT",
url="https://github.com/iSarabjitDhiman/TweeterPy",
packages=find_packages(),
keywords=["tweeterpy", "twitter scraper", "tweet scraper",
"twitter data extraction", "twitter api",
"twitter python", "tweet api", "tweetpy"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
],
install_requires=dependencies,
python_requires=">=3"
)