openqudit 0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openqudit-0.1/PKG-INFO +9 -0
- openqudit-0.1/README.md +18 -0
- openqudit-0.1/openqudit.egg-info/PKG-INFO +9 -0
- openqudit-0.1/openqudit.egg-info/SOURCES.txt +7 -0
- openqudit-0.1/openqudit.egg-info/dependency_links.txt +1 -0
- openqudit-0.1/openqudit.egg-info/top_level.txt +1 -0
- openqudit-0.1/qudit/__init__.py +4 -0
- openqudit-0.1/setup.cfg +4 -0
- openqudit-0.1/setup.py +16 -0
openqudit-0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: openqudit
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: The OpenQudit library as a python package.
|
|
5
|
+
Home-page: https://github.com/openqudit/qudit-python
|
|
6
|
+
Author: LBNL - OpenQudit Team
|
|
7
|
+
Author-email: edyounis@lbl.gov
|
|
8
|
+
License: BSD 3-Clause License
|
|
9
|
+
Requires-Python: >=3.9
|
openqudit-0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Python repository for the OpenQudit Library. More coming soon.
|
|
2
|
+
|
|
3
|
+
*** Copyright Notice ***
|
|
4
|
+
|
|
5
|
+
OpenQudit Copyright (c) 2024, The Regents of the University of California,
|
|
6
|
+
through Lawrence Berkeley National Laboratory (subject to receipt of
|
|
7
|
+
any required approvals from the U.S. Dept. of Energy). All rights reserved.
|
|
8
|
+
|
|
9
|
+
If you have questions about your rights to use or distribute this software,
|
|
10
|
+
please contact Berkeley Lab's Intellectual Property Office at
|
|
11
|
+
IPO@lbl.gov.
|
|
12
|
+
|
|
13
|
+
NOTICE. This Software was developed under funding from the U.S. Department
|
|
14
|
+
of Energy and the U.S. Government consequently retains certain rights. As
|
|
15
|
+
such, the U.S. Government has been granted for itself and others acting on
|
|
16
|
+
its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the
|
|
17
|
+
Software to reproduce, distribute copies to the public, prepare derivative
|
|
18
|
+
works, and perform publicly and display publicly, and to permit others to do so.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: openqudit
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: The OpenQudit library as a python package.
|
|
5
|
+
Home-page: https://github.com/openqudit/qudit-python
|
|
6
|
+
Author: LBNL - OpenQudit Team
|
|
7
|
+
Author-email: edyounis@lbl.gov
|
|
8
|
+
License: BSD 3-Clause License
|
|
9
|
+
Requires-Python: >=3.9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
qudit
|
openqudit-0.1/setup.cfg
ADDED
openqudit-0.1/setup.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import find_packages
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
|
|
4
|
+
setup(
|
|
5
|
+
name='openqudit',
|
|
6
|
+
version='0.1',
|
|
7
|
+
description='The OpenQudit library as a python package.',
|
|
8
|
+
url='https://github.com/openqudit/qudit-python',
|
|
9
|
+
author='LBNL - OpenQudit Team',
|
|
10
|
+
author_email='edyounis@lbl.gov',
|
|
11
|
+
license='BSD 3-Clause License',
|
|
12
|
+
license_files=['LICENSE'],
|
|
13
|
+
packages=find_packages(),
|
|
14
|
+
python_requires='>=3.9',
|
|
15
|
+
)
|
|
16
|
+
|