-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (35 loc) · 1.56 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
VERSION = "0.0.4"
SHORT_DESCRIPTION = "MetaThreads is Meta Threads-API to interact with Instagram threads app, extract data and perform actions. The library is written in python. MetaThreads API lets you fetch user's threads, thread replies, user's data, user's friends. Actions like posting a thread, like/unlike threads etc. can easily be perfomed with the api."
with open("requirements.txt") as file:
dependencies = file.read().splitlines()
with open("README.md", "r") as file:
DESCRIPTION = file.read()
setup(
name="metathreads",
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/MetaThreads",
packages=["metathreads"],
keywords=["metathreads", "threads-api", "threadsapi",
"meta threads api", "threads api",
"instagram threads", "threads-api-python", "insta-threads"],
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"
)