-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 882 Bytes
/
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
# -*- coding: utf-8 -*-
"""Setup file for the package"""
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='yawps',
description='Yet Another Workflow Parser for SecurityHub',
author='Marcus Young',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['yawps'],
version='0.0.1',
packages=find_packages(exclude=['tests*']),
install_requires=[
'boto3==1.18.48',
'botocore==1.21.48',
'certifi==2021.5.30',
'charset-normalizer==2.0.6',
'idna==3.2',
'jmespath==0.10.0',
'python-dateutil==2.8.2',
'requests==2.26.0',
's3transfer==0.5.0',
'six==1.16.0',
'slacker==0.14.0',
'urllib3==1.26.7'
],
)