-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.05 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
from setuptools import setup
setup(name='tomcru',
version='1.0.0',
description='Multi-purpose web framework',
url='https://github.com/doorskgs/tomcru',
author='oboforty',
author_email='[email protected]',
license='MIT',
zip_safe=False,
packages=['tomcru'],
install_requires=[
"prance>=0.22,<1.0",
# "apispec>=6.3,<7.0",
"openapi-spec-validator>=0.5,<1.0",
"flask-swagger-ui>=4.11,<5.0",
"pyjwt[crypto]>=2.6,<3.0",
"requests>=2.28,<3.0",
"botocore>=1.29,<2.0",
"pyyaml==6.0",
"flatten-json==0.1.13",
"deepmerge==1.1.0",
"tabulate==0.9.0",
"tomcru-jerry[static]",
"boto3",
"sqlalcemy",
"websockets",
# "aws-cdk-lib==2.84.0",
# "constructs>=10.0.0,<11.0.0",
"boto3==1.24.32",
"botocore==1.27.32",
# "construct==2.10.68",
#"websocket-client==1.4.1",
])