Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
deathsec
GitHub Repository: deathsec/instagram-py
Path: blob/master/setup.py
197 views
1
# The MIT License.
2
# Copyright (C) 2017 The Future Shell , DeathSec.
3
#
4
# @filename : setup.py
5
# @description : The traditional setup.py script for
6
# Installation from pip or easy_install
7
8
from codecs import open
9
from os.path import abspath, dirname, join , expanduser
10
11
from setuptools import Command, find_packages, setup
12
13
from InstagramPy import __version__
14
15
16
this_dir = abspath(dirname(__file__))
17
with open(join(this_dir, 'README.rst'), encoding='utf-8') as file:
18
long_description = file.read()
19
20
setup(
21
name = 'instagram-py',
22
version = __version__,
23
description = 'Slick Instagram brute force command line tool writen in python.',
24
long_description = long_description,
25
url = 'https://github.com/DeathSec/Instagram-Py',
26
download_url = 'https://github.com/deathsec/instagram-py/archive/v'+str(__version__)+'.tar.gz',
27
author = 'DeathSec',
28
author_email = '[email protected]',
29
license = 'MIT',
30
classifiers = [
31
'Topic :: Utilities',
32
'Natural Language :: English',
33
'Operating System :: OS Independent',
34
'Programming Language :: Python :: 3.4',
35
'Programming Language :: Python :: 3.6'
36
],
37
keywords = ['cli' , 'hack' , 'instagram' , 'with' , 'out' , 'password' , 'limit' , 'brute' ,
38
'force' , 'attack' , 'instagram'],
39
packages = find_packages(exclude=['docs', 'tests*']),
40
install_requires = ['requests' , 'requests[socks]' , 'stem'],
41
entry_points = {
42
'console_scripts': [
43
'instagram-py=InstagramPy:ExecuteInstagramPy',
44
],
45
},
46
47
)
48
49