-
Notifications
You must be signed in to change notification settings - Fork 901
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (84 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
89 lines (84 loc) · 2.31 KB
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
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "instagrapi"
version = "2.4.4"
authors = [
{name = "Mark Subzeroid", email = "143403577+subzeroid@users.noreply.github.com"}
]
description = "Fast and effective Instagram Private API wrapper"
readme = {file = "README.md", content-type = "text/markdown"}
license = "MIT"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
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",
]
dependencies = [
"requests==2.32.5; python_version < '3.10'",
"requests==2.33.0; python_version >= '3.10'",
"PySocks==1.7.1",
"pydantic==2.13.3",
"moviepy==1.0.3",
"pycryptodomex==3.23.0",
]
[project.urls]
Homepage = "https://github.com/subzeroid/instagrapi"
Repository = "https://github.com/subzeroid/instagrapi"
[project.optional-dependencies]
test = [
"flake8==7.3.0",
"Pillow==11.3.0; python_version < '3.10'",
"Pillow==12.2.0; python_version >= '3.10'",
"isort==6.1.0; python_version < '3.10'",
"isort==7.0.0; python_version >= '3.10'",
"bandit==1.8.6",
"mike==2.2.0",
"markdown-include==0.8.1",
"mkdocs-material==9.7.6",
"mkdocs-minify-html-plugin>=0.3.1",
"mkdocstrings==0.30.1",
"pytest-xdist==3.8.0",
"pytest==8.4.2; python_version < '3.10'",
"pytest==9.0.3; python_version >= '3.10'",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["instagrapi*"]