forked from GramAddict/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.18 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
import setuptools
with open("README.md", "r", errors="ignore") as readme:
long_description = readme.read()
setuptools.setup(
name="gramaddict",
version="1.2.5",
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.3",
"ConfigArgParse==1.2.3",
"matplotlib==3.3.3",
"numpy==1.19.3",
"PyYAML==5.3.1",
"uiautomator==1.0.2",
"uiautomator2==2.13.2",
"urllib3==1.26.3",
],
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",
)