forked from GramAddict/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.49 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
import setuptools
with open("GramAddict/version.py", "r") as f:
cur_version = f.read().split('"')[1]
with open("README.md", "r", errors="ignore") as readme:
long_description = readme.read()
setuptools.setup(
name="gramaddict",
version=cur_version,
author="GramAddict Team",
author_email="[email protected]",
description="Completely free and open source human-like Instagram bot. Powered by UIAutomator2 and compatible with basically any android device that can run instagram - real or emulated.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GramAddict/bot/",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"colorama==0.4.4",
"ConfigArgParse==1.5.3",
"PyYAML==6.0",
"uiautomator2==2.16.14",
"urllib3==1.26.7",
"emoji==1.6.1",
"langdetect==1.0.9",
"atomicwrites==1.4.0",
"spintax==1.0.4",
],
extras_require={
"telegram-reports": ["pandas==1.2.4"],
"analytics": ["matplotlib==3.4.2"],
},
entry_points={"console_scripts": ["gramaddict = GramAddict.__main__:main"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)