forked from ping/instagram_private_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.11 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import unittest.mock
has_mock = True
except ImportError:
has_mock = False
__author__ = 'ping <[email protected]>'
__version__ = '1.5.7'
packages = [
'instagram_private_api',
'instagram_private_api.endpoints',
'instagram_web_api'
]
test_reqs = [] if has_mock else ['mock']
setup(
name='instagram_private_api',
version=__version__,
author='ping',
author_email='[email protected]>',
license='MIT',
url='https://github.com/ping/instagram_private_api/tree/master',
install_requires=[],
test_requires=test_reqs,
keywords='instagram private api',
description='A client interface for the private Instagram API.',
packages=packages,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
]
)