Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit cd6c4f8

Browse files
author
Rajib Chakravorty
committed
First commit of qctrlqiskit as a separate package
0 parents  commit cd6c4f8

23 files changed

+2718
-0
lines changed

.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2.1
2+
3+
orbs:
4+
q-ctrl: q-ctrl/python@dev:0.1.3
5+
6+
workflows:
7+
version: 2
8+
9+
"PyPI Project":
10+
jobs:
11+
- q-ctrl/pytest_python_36_test:
12+
name: pytest 3.6 (Production)
13+
context: q-ctrl-api-production
14+
noroot: true
15+
- q-ctrl/pytest_python_37_test:
16+
name: pytest 3.7 (Production)
17+
context: q-ctrl-api-production
18+
noroot: true
19+
- q-ctrl/build_and_publish_internally:
20+
name: Build & Publish Internally
21+
context: q-ctrl-api-development
22+
filters:
23+
branches:
24+
only:
25+
- master
26+
tags:
27+
only: /^v?\d+(\.\d+){1,2}$/
28+
- q-ctrl/publish_publicly:
29+
name: Publish Publicly
30+
context: q-ctrl-api-production
31+
requires:
32+
- Build & Publish Internally
33+
filters:
34+
tags:
35+
only: /^v?\d+(\.\d+){1,2}$/

.gitignore

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# Example controls
2+
*.csv
3+
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
env/
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
# Jupyter Notebook
74+
.ipynb_checkpoints
75+
76+
# pyenv
77+
.python-version
78+
79+
# celery beat schedule file
80+
celerybeat-schedule
81+
82+
# SageMath parsed files
83+
*.sage.py
84+
85+
# dotenv
86+
.env
87+
88+
# virtualenv
89+
.venv
90+
venv/
91+
ENV/
92+
93+
# Spyder project settings
94+
.spyderproject
95+
.spyproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
100+
# mkdocs documentation
101+
/site
102+
103+
# mypy
104+
.mypy_cache/
105+
106+
# pytest
107+
.pytest_cache/*
108+
junit.xml
109+
110+
#Mac related files
111+
*.DS_Store
112+
qctrl_library/.vscode/*
113+
.vscode/*
114+
qctrl_library.code-workspace
115+
116+

0 commit comments

Comments
 (0)