-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
68 lines (66 loc) · 1.8 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
from distutils.core import setup
from pathlib import Path
version = "5.2.9"
long_description = (Path(__file__).parent / "README.md").read_text(encoding="utf-8").replace(
"[!IMPORTANT]",
"**Important:**"
)
setup(
name="ensta",
python_requires=">=3.10",
packages=[
"ensta",
"ensta.lib",
"ensta.containers",
"ensta.structures",
"ensta.parser"
],
version=version,
license="MIT",
description="🔥 Fastest & Simplest Python Package For Instagram Automation",
long_description=long_description,
long_description_content_type="text/markdown",
author="Deepak Soni",
author_email="[email protected]",
url="https://github.com/diezo/ensta",
download_url=f"https://github.com/diezo/ensta/archive/refs/tags/v{version}.tar.gz",
keywords=[
"instagram-client",
"instagram",
"api-wrapper",
"instagram-scraper",
"instagram-api",
"instagram-sdk",
"instagram-photos",
"instagram-api-python",
"instabot",
"instagram-stories",
"instagram-bot",
"instapy",
"instagram-downloader",
"instagram-account",
"instagram-crawler",
"instagram-private-api",
"igtv",
"instagram-automation",
"reels",
"instagram-feed"
],
install_requires=[
"requests",
"moviepy",
"pillow",
"cryptography",
"pyotp",
"ntplib",
"pyquery"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10"
]
)