-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.22 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
# -*- coding: utf-8 -*-
#######################################################################
# License: MIT License #
# Homepage: https://github.com/tasooshi/horrors/ #
# Version: 0.5 #
#######################################################################
from distutils.core import setup
setup(
name='horrors',
version='0.5',
package_dir={'horrors': 'horrors'},
packages=[
'horrors',
'horrors/services',
'horrors/services/complete',
'horrors/services/simple',
'horrors/services/utility',
],
author='tasooshi',
author_email='tasooshi@pm.me',
description='A micro-framework for writing attack scenarios starring multiple vulnerabilities',
license='MIT License',
url='https://github.com/tasooshi/horrors/',
install_requires=(
'aiohttp==3.8.1',
'beautifulsoup4==4.10.0',
'sanic==21.12.1',
'tinydb==4.6.1',
),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
)