-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
42 lines (40 loc) · 1.4 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='instagram-python-scraper',
version='1.0.2',
description=(
'A instagram scraper wrote in python. Various actions supported.Enjoy it!'
),
long_description='A instagram scraper wrote in python. Various actions supported.Similar to instagram-php-scraper.Usages are in example.py. Enjoy it!',
author='leungwaiban',
author_email='[email protected]',
maintainer='leungwaiban',
maintainer_email='[email protected]',
include_package_data=True,
license='MIT',
packages=find_packages(),
platforms=["all"],
url='https://github.com/luengwaiban/instagram-python-scraper',
install_requires=[
'certifi>=2019.3.9',
'chardet>=3.0.4',
'idna>=2.8',
'requests>=2.21.0',
'urllib3>=1.24.3'
],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
)