forked from InstaPy/InstaPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
69 lines (56 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import io
import os
from setuptools import setup
__version__ = '0.0.1'
__author__ = 'Tim Grossmann'
description = 'Instagram Like, Comment and Follow Automation Script'
here = os.path.abspath(os.path.dirname(__file__))
# load requirements
with open("requirements.txt") as f:
dependencies = f.read().splitlines()
# load README
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as doc_file:
documentation = '\n' + doc_file.read()
setup(
name='instagram_py',
version=__version__,
description=description,
long_description=documentation,
author=__author__,
author_email='[email protected]',
maintainer="InstaPy Community at Github",
url='https://github.com/timgrossmann/InstaPy',
download_url="https://github.com/timgrossmann/InstaPy/archive/master.zip",
project_urls={"GUI": "https://github.com/ahmadudin/electron-instaPy-GUI",
"How Tos": "https://github.com/timgrossmann/InstaPy/tree/master/docs",
"Examples": "https://github.com/timgrossmann/InstaPy/tree/master/examples"},
packages=['instapy'],
py_modules='instapy',
license="GPLv3",
keywords=["instagram", "automation", "promotion", "marketing", "instapy", "bot"],
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: Web Environment",
"Environment :: Other Environment :: VPS",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Programming Language :: SQL",
"Topic :: Internet :: Browsers",
"Topic :: Other/Nonlisted Topic :: Automation :: Selenium",
"Topic :: Utilities",
"Natural Language :: English"],
install_requires=dependencies,
extras_require={"test":["pytest", "tox"]},
include_package_data=True,
python_requires=">=2.7",
platforms=["win32", "linux", "linux2", "darwin"]
)