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 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
@@ -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,7 @@
1
+ README.md
2
+ setup.py
3
+ openqudit.egg-info/PKG-INFO
4
+ openqudit.egg-info/SOURCES.txt
5
+ openqudit.egg-info/dependency_links.txt
6
+ openqudit.egg-info/top_level.txt
7
+ qudit/__init__.py
@@ -0,0 +1 @@
1
+ qudit
@@ -0,0 +1,4 @@
1
+ # placeholder for now
2
+ def add_two_numbers(a, b):
3
+ return a + b
4
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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
+