-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (47 loc) · 2.02 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
import io
import os
from setuptools import setup
__version__ = '1.0.0'
__author__ = 'Ivan Pilipovic'
description = 'Scrape picture and/or videos from Instagram. Scrape by username or hashtag.'
here = os.path.abspath(os.path.dirname(__file__))
# load requirements
with open("requirements.txt") as f:
dependencies = f.read().splitlines()
setup(
name='instagram_py',
version=__version__,
description=description,
long_description=documentation,
author=__author__,
author_email='contact.timgrossmann@gmail.com',
packages=['instapy'],
py_modules='instapy',
license="GPLv3",
keywords=["instagram", "automation", "scrape", "download picture", "download video", "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"]
)