-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
121 lines (104 loc) · 3.67 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# How to use this file
# - Copy this file to the root of your repository
# - Update the values as per the instructions in the comments
# - Remove all comments
#
# More information
# - https://code.q-ctrl.com/packaging#python
# - https://python-poetry.org/docs/pyproject/
[tool.poetry]
# name: The "Install" name as defined in https://code.q-ctrl.com/naming-conventions/#packages
name = "qctrl-template"
# version: The "Version" as defined in https://code.q-ctrl.com/releases#version
version = "1.2.3"
# description: The "Package" name as defined in https://code.q-ctrl.com/naming-conventions/#packages
description = "Q-CTRL Template"
# license: The license as defined in https://code.q-ctrl.com/licensing
# Commercial = "https://q-ctrl.com/terms"
# Open source = "Apache-2.0"
# Unlicensed = ""
license = "Apache-2.0"
# authors: DO NOT EDIT
authors = ["Q-CTRL <[email protected]>"]
# maintainers: DO NOT EDIT
maintainers = ["Q-CTRL <[email protected]>"]
# readme: DO NOT EDIT - the README.md file as defined in https://github.com/qctrl/template/blob/master/README.md
readme = "README.md"
# homepage: DO NOT EDIT
homepage = "https://q-ctrl.com"
# repository: A link to the public GitHub repository. Remove it if the repository is private.
repository = "https://github.com/qctrl/template"
# documentation: A link to the "User documentation" as defined in https://code.q-ctrl.com/documentation#user-documentation
# Remove it if not needed.
documentation = ""
# keywords: DO NOT EDIT
keywords = [
"black opal",
"boulder opal",
"fire opal",
"nisq",
"open controls",
"q control",
"q ctrl",
"q-control",
"q-ctrl",
"qcontrol",
"qctrl",
"quantum",
"quantum algorithms",
"quantum circuits",
"quantum coding",
"quantum coding software",
"quantum computing",
"quantum control",
"quantum control software",
"quantum control theory",
"quantum engineering",
"quantum error correction",
"quantum firmware",
"quantum fundamentals",
"quantum sensing",
"qubit",
"qudit"
]
# classifiers: Do not edit, unless the package only supports a subset of Python versions.
# In that case, remove unsupported versions from the classifiers.
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Distributed Computing"
]
# packages: The "Import" name as defined in https://code.q-ctrl.com/naming-conventions
packages = [
{ include = "qctrltemplate" },
]
# urls: DO NOT EDIT
[tool.poetry.urls]
LinkedIn = "https://www.linkedin.com/company/q-ctrl/"
Facebook = "https://www.facebook.com/qctrl"
X = "https://x.com/qctrlHQ"
YouTube = "https://www.youtube.com/qctrl"
GitHub = "https://github.com/qctrl"
# Uncomment the following 2 blocks if the package requires access to the internal PyPI.
# # Use the public PyPI as the main source: DO NOT EDIT
# [[tool.poetry.source]]
# name = "PyPI"
# priority = "primary"
# # Use the internal PyPI as the supplemental source: DO NOT EDIT
# [[tool.poetry.source]]
# name = 'Artifactory'
# url = 'https://qctrl.jfrog.io/artifactory/api/pypi/qctrl/simple/'
# priority = "supplemental"