-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
44 lines (39 loc) · 1.38 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
from os import path
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '0.3.9'
packages = [
'instagram_private_api_extensions'
]
test_reqs = ['responses>=0.5.1']
with io.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='instagram_private_api_extensions',
version=__version__,
author='ping',
author_email='lastmodified@gmail.com',
license='MIT',
url='https://github.com/ping/instagram_private_api_extensions/tree/master',
keywords='instagram private api extensions',
description='An extension module for https://github.com/ping/instagram_private_api',
long_description=long_description,
long_description_content_type='text/markdown',
packages=packages,
install_requires=['moviepy==1.0.1', 'Pillow>=4.0.0', 'requests>=2.9.1'],
test_requires=test_reqs,
platforms=['any'],
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',
'Programming Language :: Python :: 3.6',
]
)