forked from IBM/oscal-exchange-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.54 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
# -*- mode:python; coding:utf-8 -*-
# Copyright (c) 2022 IBM Corp. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Setup."""
from setuptools import find_packages, setup
setup(
name='oxp_demo',
version='1.0.0',
description='Demo of an OSCAL Exchange Protocol RESTful API based on Flask-RESTPlus',
url='https://github.ibm.com/degenaro/oscal-exchange-protocol-swagger-prototype',
author='IBM Research',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers :: System Administrators',
'Topic :: Security :: Application Frameworks',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='rest restful api swagger openapi FastAPI compliance security oscal nist',
packages=find_packages(),
install_requires=[
'compliance-trestle',
'fastapi>=0.73.0',
'uvicorn[standard]',
'pre-commit',
'python-multipart',
],
)