-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.16 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
""" Setup script for the 'thsensai' Python package. """
from setuptools import setup, find_packages
def include(filename) -> str:
"""Load file contents."""
with open(filename, encoding="utf-8") as f:
return f.read()
setup(
name="thsensai",
version="0.4.4",
description="A library and CLI tool for AI-aided threat hunting and intelligence analysis.",
long_description=include("README.md"),
long_description_content_type="text/markdown",
author="srozb",
author_email="github@rozbicki.eu",
url="https://github.com/srozb/thsensai", # Replace with your repo URL
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=include("requirements.txt").splitlines(),
extras_require={
"dev": [
"pylint>=3.3.0",
],
},
entry_points={
"console_scripts": [
"sensai=thsensai.cli:app",
"thsensai=thsensai.cli:app",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)