add code
This commit is contained in:
parent
99f9e43371
commit
7e4c7b9dc5
|
@ -1,3 +1,5 @@
|
|||
.idea
|
||||
|
||||
# ---> Python
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
[project]
|
||||
name = "python-quantum"
|
||||
version = "1.0"
|
||||
authors = [
|
||||
{ name = "Cyberes", email = "cyberes@evulid.cc" },
|
||||
]
|
||||
description = "Bring quantum computing to Python!"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/cyberes/python3-quantum"
|
||||
Issues = "https://github.com/cyberes/python3-quantum/issues"
|
|
@ -0,0 +1,3 @@
|
|||
import random
|
||||
|
||||
tralse = bool(random.getrandbits(1))
|
Loading…
Reference in New Issue