This commit is contained in:
Cyberes 2024-03-15 22:57:35 -06:00
parent 99f9e43371
commit 7e4c7b9dc5
4 changed files with 22 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.idea
# ---> Python
# Byte-compiled / optimized / DLL files
__pycache__/

17
pyproject.toml Normal file
View File

@ -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
src/quantum/__init__.py Normal file
View File

3
src/quantum/quantum.py Normal file
View File

@ -0,0 +1,3 @@
import random
tralse = bool(random.getrandbits(1))