diff --git a/dqpu/__init__.py b/dqpu/__init__.py index 3f3a880..0fad197 100644 --- a/dqpu/__init__.py +++ b/dqpu/__init__.py @@ -13,4 +13,4 @@ # limitations under the License. -__version__ = "0.2.4" +__version__ = "0.2.5" diff --git a/setup.py b/setup.py index 955f3c5..10e79aa 100644 --- a/setup.py +++ b/setup.py @@ -12,41 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - -from setuptools import find_packages, setup - -setup( - name="dqpu", - version="0.1", - description="", - author="Davide Gessa", - setup_requires="setuptools", - author_email="gessadavide@gmail.com", - packages=["dqpu", "dqpu.q"], - entry_points={ - "console_scripts": [ - "dqpu=dqpu.main:main", - ], - }, - zip_safe=False, - install_requires=["numpy"], -) - - -# Copyright 2023-2024 Davide Gessa - -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at - -# http://www.apache.org/licenses/LICENSE-2.0 - -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - from setuptools import setup import dqpu