Skip to content

Commit

Permalink
refactoring, minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoulHeese committed Jan 14, 2024
1 parent b37c5a6 commit 9d26a71
Show file tree
Hide file tree
Showing 10 changed files with 577 additions and 459 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# misc
.idea/
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Raoul Heese'

# The full version, including alpha/beta/rc tags
release = '1.1'
release = '1.2'

# -- General configuration ---------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. QTree documentation master file, created by
sphinx-quickstart on Fri Sep 2 21:59:05 2022.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
sphinx-quickstart on Fri Sep 2 21:59:05 2022.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

Welcome to QTree's documentation!
=================================
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[metadata]
name = quantum-tree
version = 1.1
version = 1.2
description = Quantum decision trees with binary features and binary classes
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down Expand Up @@ -39,6 +39,8 @@ install_requires =
deap
scikit-learn
qiskit
qiskit_aer
pytest

packages = find:
package_dir =
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setuptools

if __name__ == "__main__":
setuptools.setup()
setuptools.setup()
2 changes: 1 addition & 1 deletion src/qtree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from qtree.qtree import QTree
from qtree.ctree import ClassicalTree
from qtree.data import BDS, BDS_test, BDS_tic_tac_toe
from qtree.data import BDS, BDS_test, BDS_tic_tac_toe
2 changes: 1 addition & 1 deletion src/qtree/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1"
__version__ = "1.1"
Loading

0 comments on commit 9d26a71

Please sign in to comment.