forked from gokulapap/wappalyzer-cli
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 711 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 711 Bytes
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
from setuptools import setup, find_packages
setup(
name='wappybird',
version='0.3.6',
description='Wappalyzer CLI tool to find Web Technologies ',
author='Brandon',
author_email='brandon@scholet.net',
url='https://github.com/brandonscholet/wappybird',
packages=find_packages(),
install_requires=[
'argparse',
'requests',
'colorama',
],
entry_points={
'console_scripts': [
'wappybird = wappybird.main:do_the_thing',
],
},
package_data={
'wappybird': ['technologies.json'], # Specify the path to your JSON file
},
include_package_data=True, # Include package data when building the distribution
)