-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (29 loc) · 903 Bytes
/
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
from distutils.core import setup
setup(
name = 'instatag',
packages = ['instatag'],
version = '0.1',
description = 'Extract users from tag in instagram',
long_description="",
author = 'Moduland Co',
author_email = '[email protected]',
url = 'https://github.com/Moduland/instatag',
download_url = 'https://github.com/Moduland/instatag/tarball/v0.1',
keywords = ['extract', 'scrap', 'instagram','python','tags','users'],
install_requires=[
'art',
'bs4',
'requests',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
],
license='MIT',
)