forked from subzeroid/instagrapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (76 loc) · 2.57 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
from setuptools import find_packages, setup
long_description = """
Fast and effective Instagram Private API wrapper (public+private requests and challenge resolver).
Use the most recent version of the API from Instagram.
Features:
1. Performs Public API (web, anonymous) or Private API (mobile app, authorized)
requests depending on the situation (to avoid Instagram limits)
2. Challenge Resolver have Email (as well as recipes for automating receive a code from email) and SMS handlers
3. Support upload a Photo, Video, IGTV, Clips (Reels), Albums and Stories
4. Support work with User, Media, Insights, Collections, Location (Place), Hashtag and Direct objects
5. Like, Follow, Edit account (Bio) and much more else
6. Insights by account, posts and stories
7. Build stories with custom background, font animation, swipe up link and mention users
8. In the next release, account registration and captcha passing will appear
"""
requirements = [
"requests<3.0,>=2.25.1",
"PySocks==1.7.1",
"pydantic==1.10.7",
"pycryptodomex==3.17",
]
# requirements = [
# line.strip()
# for line in open('requirements.txt').readlines()
# ]
setup(
name="instagrapi",
version="1.17.5",
author="Mikhail Andreev",
author_email="x11org@gmail.com",
license="MIT",
url="https://github.com/adw0rd/instagrapi",
install_requires=requirements,
keywords=[
"instagram private api",
"instagram-private-api",
"instagram api",
"instagram-api",
"instagram",
"instagram-scraper",
"instagram-client",
"instagram-stories",
"instagram-feed",
"instagram-reels",
"instagram-insights",
"downloader",
"uploader",
"videos",
"photos",
"albums",
"igtv",
"reels",
"stories",
"pictures",
"instagram-user-photos",
"instagram-photos",
"instagram-metadata",
"instagram-downloader",
"instagram-uploader",
"instagram-note",
],
description="Fast and effective Instagram Private API wrapper",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires=">=3.8",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)