-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create cla.yml * Create trigger-circleci.yml * repo-sync-2023-10-30T16:05:08+0800 * rm files * fix comment
- Loading branch information
1 parent
e419c5c
commit 47a9d68
Showing
15 changed files
with
891 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
import setuptools | ||
import os | ||
|
||
|
||
def read(fname): | ||
with open(os.path.join(os.path.dirname(__file__), fname)) as f: | ||
return f.read() | ||
|
||
|
||
setuptools.setup( | ||
name = "sdc-apis", | ||
version = "0.1.0b0", | ||
author = "secretflow", | ||
author_email = "[email protected]", | ||
description = "SecretFlow Data Capsule apis proto generated python", | ||
long_description_content_type = 'text/markdown', | ||
long_description = 'SecretFlow Data Capsule apis proto generated python', | ||
license = "Apache 2.0", | ||
url = "https://github.com/secretflow/secure-data-capsule-apis", | ||
packages = setuptools.find_packages(), | ||
install_requires = read('requirements.txt'), | ||
classifiers = [ | ||
name="sdc-apis", | ||
version="0.2.0.dev20230930", | ||
author="secretflow", | ||
author_email="[email protected]", | ||
description="SecretFlow Data Capsule apis proto generated python", | ||
long_description_content_type="text/markdown", | ||
long_description="SecretFlow Data Capsule apis proto generated python", | ||
license="Apache 2.0", | ||
url="https://github.com/secretflow/secure-data-capsule-apis", | ||
packages=setuptools.find_packages(), | ||
install_requires=read("requirements.txt"), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
], | ||
include_package_data=True, | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2023 Ant Group Co., Ltd. | ||
// | ||
// 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 | ||
// | ||
// http://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. | ||
// | ||
|
||
syntax = "proto3"; | ||
|
||
package secretflowapis.v2; | ||
|
||
|
||
// RequestHeader carries the user custom headers. | ||
message RequestHeader { | ||
// Custom headers used to record custom information. | ||
map<string, string> custom_headers = 1; | ||
} |
Oops, something went wrong.