mirror of
https://github.com/mytechnotalent/Threat-Modeling-Toolkit.git
synced 2026-08-15 04:50:18 +02:00
Initial commit: TMT lightweight threat modeling toolkit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
"""Setup configuration for the TMT threat modeling toolkit."""
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="tmt",
|
||||
version="1.0.0",
|
||||
description="Lightweight Threat Modeling Toolkit for Release Cycles",
|
||||
author="Kevin Thomas",
|
||||
packages=find_packages(),
|
||||
python_requires=">=3.9",
|
||||
install_requires=[
|
||||
"pyyaml>=6.0",
|
||||
"openai>=1.0.0",
|
||||
"anthropic>=0.18.0",
|
||||
"huggingface-hub>=0.20.0",
|
||||
"jinja2>=3.1.0",
|
||||
],
|
||||
extras_require={
|
||||
"dev": [
|
||||
"pytest>=7.0.0",
|
||||
"pytest-cov>=4.0.0",
|
||||
"black>=22.0.0",
|
||||
],
|
||||
},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"tmt=run_threat_model:main",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user