-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 842 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (26 loc) · 842 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
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="mythic",
version="0.2.10",
description="Interact with Mythic C2 Framework Instances",
long_description=README,
long_description_content_type="text/markdown",
url="https://docs.mythic-c2.net/scripting",
author="@its_a_feature_",
author_email="",
license="BSD3",
classifiers=[
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3.10",
],
packages=["mythic"],
include_package_data=True,
install_requires=["aiohttp", "asyncio", "gql[aiohttp,websockets]==3.5.3", "pycryptodome"],
entry_points={},
)