forked from dwavesystems/dwave-tabu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Note the setup() includes only dynamically generated options. GitHub seems to have recently fixed their dependency scanning to look at setup.cfg (dependabot/dependabot-core#3423). Possibly not deployed to GitHub yet.
- Loading branch information
Showing
4 changed files
with
44 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[metadata] | ||
name = dwave-tabu | ||
version = attr: tabu.__version__ | ||
description = Optimized Tabu solver for QUBOs | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
license = Apache 2.0 | ||
license_file = LICENSE | ||
author = D-Wave Systems Inc. | ||
author_email = [email protected] | ||
url = https://github.com/dwavesystems/dwave-tabu | ||
project_urls = | ||
Documentation = https://docs.ocean.dwavesys.com/en/stable/docs_tabu/sdk_index.html | ||
Issue Tracker = https://github.com/dwavesystems/dwave-tabu/issues/ | ||
Source Code = https://github.com/dwavesystems/dwave-tabu/ | ||
classifiers = | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Development Status :: 4 - Beta | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: Implementation :: CPython | ||
|
||
[options] | ||
packages = tabu | ||
zip_safe = false | ||
include_package_data = true | ||
python_requires = >=3.6 | ||
install_requires = | ||
numpy>=1.16.0,<2.0.0 | ||
dimod>=0.9.0,<0.10.0 | ||
|
||
[aliases] | ||
dists = clean --all sdist bdist_wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,10 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
__packagename__ = 'dwave-tabu' | ||
__title__ = 'D-Wave Tabu' | ||
__version__ = '0.4.0' | ||
from tabu import __version__, __package_name__ | ||
|
||
__author__ = 'D-Wave Systems Inc.' | ||
__authoremail__ = '[email protected]' | ||
__author_email__ = '[email protected]' | ||
__description__ = 'Optimized Tabu solver for QUBOs' | ||
__url__ = 'https://github.com/dwavesystems/dwave-tabu' | ||
__license__ = 'Apache 2.0' | ||
__copyright__ = '2018, D-Wave Systems Inc.' |