-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsetup.py
47 lines (40 loc) · 1.56 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
45
46
47
# The MIT License.
# Copyright (C) 2017 The Future Shell , DeathSec.
#
# @filename : setup.py
# @description : The traditional setup.py script for
# Installation from pip or easy_install
from codecs import open
from os.path import abspath, dirname, join , expanduser
from setuptools import Command, find_packages, setup
from InstagramPy import __version__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.rst'), encoding='utf-8') as file:
long_description = file.read()
setup(
name = 'instagram-py',
version = __version__,
description = 'Slick Instagram brute force command line tool writen in python.',
long_description = long_description,
url = 'https://github.com/DeathSec/Instagram-Py',
download_url = 'https://github.com/deathsec/instagram-py/archive/v'+str(__version__)+'.tar.gz',
author = 'DeathSec',
author_email = '[email protected]',
license = 'MIT',
classifiers = [
'Topic :: Utilities',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6'
],
keywords = ['cli' , 'hack' , 'instagram' , 'with' , 'out' , 'password' , 'limit' , 'brute' ,
'force' , 'attack' , 'instagram'],
packages = find_packages(exclude=['docs', 'tests*']),
install_requires = ['requests' , 'requests[socks]' , 'stem'],
entry_points = {
'console_scripts': [
'instagram-py=InstagramPy:ExecuteInstagramPy',
],
},
)