forked from megadose/toutatis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (18 loc) · 831 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='toutatis',
version="1.31",
packages=find_packages(),
author="megadose",
install_requires=["argparse","requests","phonenumbers","pycountry"],
description="It is a tool written to retrieve private information such as Phone Number, Mail Address, ID on Instagram accounts via API.",
long_description="It is a tool written to retrieve private information such as Phone Number, Mail Address, ID on Instagram accounts via API.",
include_package_data=True,
url='http://github.com/megadose/toutatis',
entry_points = {'console_scripts': ['toutatis = toutatis.core:main']},
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)