-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='getrails',
version=3.3,
author="Julio Lira",
author_email="jul10l1r4@disroot.org",
description="Tool of OSINT and Dork hacking that work with Google, Duckduckgo and Onion likes",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jul10l1r4/getrails",
packages=["getrails", "getrails.google", "getrails.duckduckgo", "getrails.vidalia"],
license="GPLv3",
keywords="getrails get trails google duckduckgo tor onion torch vidalia osint",
install_requires=[
'mechanicalsoup',
'google',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
)