-
-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) 路 785 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) 路 785 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
with open("WireTapper.txt") as f:
requirements = [line.strip() for line in f if line.strip() and not line.startswith('#')]
setup(
name="wiretaper",
version="1.0.0",
description="Wireless OSINT & Signal Intelligence Platform",
author="WireTapper Developer",
packages=find_packages(),
py_modules=["app", "cli", "telemetry_importer", "flock_manager"],
include_package_data=True,
package_data={
"": ["templates/*", "templates/*/*", "static/*", "static/*/*", "uploads/*", "uploads/*/*"],
},
install_requires=requirements,
entry_points={
"console_scripts": [
"wiretapper = cli:main",
"wiretaper = cli:main",
],
},
python_requires=">=3.8",
)