Skip to content

Commit

Permalink
Add acknowledgement english, korean text & 0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
minwook-shin committed Aug 10, 2023
1 parent cfdf4ae commit c31219f
Show file tree
Hide file tree
Showing 8 changed files with 214 additions and 101 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG.md

## 0.1.1 (2023-08-10)

Documentation :
- Add acknowledgement english, korean text

## 0.1.0 (2023-08-06)

Features :
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,8 @@ or
```shell
tox
```

## Acknowledgement

- 국문 : "본 연구는 2022년 과학기술정보통신부 및 정보통신기획평가원의 SW중심대학사업의 연구결과로 수행되었음"(2022-0-00964)
- English : "This research was supported by the MIST(Ministry of Science, ICT), Korea, under the National Program for Excellence in SW), supervised by the IITP(Institute of Information & communications Technology Planning & Evaluation) in 2022"(2022-0-00964)
4 changes: 4 additions & 0 deletions acknowledgement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This research was supported by the MIST(Ministry of Science, ICT), Korea, under the National Program for Excellence in SW),
supervised by the IITP(Institute of Information & communications Technology Planning & Evaluation) in 2022"(2022-0-00964)

"본 연구는 2022년 과학기술정보통신부 및 정보통신기획평가원의 SW중심대학사업의 연구결과로 수행되었음"(2022-0-00964)
269 changes: 172 additions & 97 deletions docs/qiskit_class_converter.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/search.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,19 @@
from qiskit import QuantumCircuit, transpile
from qiskit_aer import AerSimulator

from qiskit_class_converter import ConversionService, ConversionType, __FULL_VERSION__
from qiskit_class_converter import ConversionService, ConversionType, __FULL_VERSION__, \
__LICENSE__, __acknowledgement_en__

warnings.filterwarnings('ignore')

version = __FULL_VERSION__
logger.info(version)

LICENSE = __LICENSE__
logger.info(LICENSE)

logger.info(__acknowledgement_en__)

# matrix to quantum circuit
input_value = [
[1, 0, 0, 0],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude = ['qiskit_class_converter*tests']

[project]
name = "qiskit-classroom-converter"
version = "0.1.0"
version = "0.1.1"
authors = [
{ name = "KMU-quantum-classroom" },
]
Expand Down
20 changes: 19 additions & 1 deletion qiskit_class_converter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@
| MATRIX_TO_QC | label{str} |
| STR_TO_BRA_KET | print{raw} |
# Acknowledgement
- 국문 : "본 연구는 2022년 과학기술정보통신부 및 정보통신기획평가원의 SW중심대학사업의 연구결과로 수행되었음"(2022-0-00964)
- English : "This research was supported by the MIST(Ministry of Science, ICT),
Korea, under the National Program for Excellence in SW),
supervised by the IITP(Institute of Information & communications Technology Planning & Evaluation)
in 2022"(2022-0-00964)
"""
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
Expand All @@ -48,7 +56,8 @@
from .services.converter_service import ConversionService, ConversionType

__all__ = ["ConversionService", "ConversionType",
"__VERSION__", "__QISKIT_VERSION__", "__FULL_VERSION__"]
"__VERSION__", "__QISKIT_VERSION__", "__FULL_VERSION__",
"__LICENSE__", "__acknowledgement_en__", "__acknowledgement_ko__"]

# parse library version
__VERSION__ = version('qiskit-classroom-converter')
Expand All @@ -59,3 +68,12 @@
""".. warning:: This version constant for document is an example. \
For the latest version information, see gitHub release or PYPI page. \
https://pypi.org/project/qiskit-classroom-converter/"""

__LICENSE__ = "Apache License Version 2.0"

__acknowledgement_en__ = '"This research was supported by the MIST(Ministry of Science, ICT), ' \
'Korea, under the National Program for Excellence in SW), supervised ' \
'by the IITP(Institute of Information & communications Technology Planning & Evaluation) ' \
'in 2022"(2022-0-00964)'

__acknowledgement_ko__ = '"본 연구는 2022년 과학기술정보통신부 및 정보통신기획평가원의 SW중심대학사업의 연구결과로 수행되었음"(2022-0-00964)'

0 comments on commit c31219f

Please sign in to comment.