mirror of https://github.com/dirtbags/moth.git
27 lines
637 B
Python
27 lines
637 B
Python
from setuptools import setup
|
|
|
|
import sys
|
|
if sys.version_info < (3,5):
|
|
sys.exit("Sorry, Python < 3.5 is not supported")
|
|
|
|
setup(
|
|
name = "moth",
|
|
version = open("VERSION", "r").read().strip(),
|
|
description = "The MOTH development toolkit",
|
|
packages = ["moth"],
|
|
python_requires = "~=3.5",
|
|
install_requires = [
|
|
"mistune>=0.8.4",
|
|
"PyYAML>=5.3.1",
|
|
],
|
|
extras_require = {
|
|
"scapy": ["scapy>=2.4.2"],
|
|
"pillow": ["Pillow>=5.4.1"],
|
|
"full": ["scapy>=2.5.2", "Pillow>=5.4.1"],
|
|
},
|
|
include_package_data = True,
|
|
entry_points = {
|
|
"console_scripts": [],
|
|
},
|
|
)
|