Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.{py}]
indent_style = space
indent_size = 4

[*.md]
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .github/.git-pr-release
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Release <%= Time.now %>
<% pull_requests.each do |pr| -%>
- #<%= pr.number %> <%= pr.title %> <%= pr.mention %>
<% end -%>
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Mameta29 @SeiyaKobayashi
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug Report
about: Create a bug report
title: ''
labels: 'bug'
assignees: ''
---

<!-- Edit issue title -->

## 🐛 Description <!-- Provide a detailed description (including the expected behavior) of the bug -->



## 🔍 How to Reproduce <!-- Describe how to reproduce the bug -->



## 📚 References <!-- Provide a list of external links related to this issue (if any) -->

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Feature Request
about: Submit a feature request
title: ''
labels: ['feature request']
assignees: ''
---

<!-- Edit issue title -->

## 🌈 Overview <!-- Write a brief overview of the feature -->



## ❓ Motivation <!-- Summarize motivation of the feature request. Why should our SDK have this feature? -->



## 🎨 Description <!-- Provide a detailed description of the feature -->



## 📚 References <!-- Provide a list of external links related to this issue (if any) -->

24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Task
about: Create a new task
title: ''
labels: ['task']
assignees: ''
---

<!-- Edit issue title -->

## 📝 Overview <!-- Write a brief overview of the task -->



## 🖋 Details <!-- Provide detailed instructions of the task -->



## 🍭 Sub-Tasks <!-- Divide the task into sub-tasks (if appropriate) -->

-

## 📚 References <!-- Provide a list of external links related to this issue (if any) -->

Empty file added .github/actions/.gitkeep
Empty file.
16 changes: 16 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- Edit PR title -->

## 🌈 Overview <!-- Write a brief overview of the changes -->



## 🎯 Issues <!-- Provide a list of related issues -->

-

## 🎨 Details <!-- Provide a detailed description of the changes -->



## 📚 References <!-- Provide a list of external links related to this PR (if any) -->

6 changes: 6 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
template: |
## What's Changed

$CHANGES

**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
27 changes: 27 additions & 0 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: create release prs

on:
push:
branches:
- develop

jobs:
create-release-pr:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: Create a release PR
env:
GIT_PR_RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_PR_RELEASE_BRANCH_PRODUCTION: main
GIT_PR_RELEASE_BRANCH_STAGING: develop
GIT_PR_RELEASE_TEMPLATE: .github/.git-pr-release
GIT_PR_RELEASE_LABELS: release
TZ: Asia/Tokyo
run: |
gem install -N git-pr-release -v "2.2.0"
git-pr-release --no-fetch
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# misc
cspell.json
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 JPYC株式会社

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 4 additions & 0 deletions README-ja.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# JPYC Python SDK

> [!IMPORTANT]
> TODO: README in Japanese
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# python-sdk
# JPYC Python SDK

> [!IMPORTANT]
> TODO: README in English
Empty file added docs/.gitkeep
Empty file.
Empty file added src/core/.gitkeep
Empty file.
Empty file added tests/.gitkeep
Empty file.