Skip to content

Commit

Permalink
Rename to avoid similar names in PYPI
Browse files Browse the repository at this point in the history
  • Loading branch information
djcopley committed Dec 25, 2023
1 parent b2b20b8 commit 010bf9b
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ simplifying Boolean expressions efficiently.
Now you can install the Quine–McCluskey Python library using `pip`. Just run the following command:

```bash
pip install quinemccluskey
pip install simpliqm
```

### Getting Started
Expand Down Expand Up @@ -47,7 +47,7 @@ Ensure you have Python version 3.6 or higher installed to use this library.
#### From Python:

```python
from quinemccluskey import minimize, format_minimized_expression
from simpliqm import minimize, format_minimized_expression

n_bits = 4
minterms = [0, 1, 2, 4, 8, 10, 12, 15]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "quinemccluskey"
name = "simpliqm"
dynamic = ["version"]
dependencies = []
authors = [
Expand All @@ -29,12 +29,12 @@ classifiers = [
]

[tool.setuptools]
packages = ["quinemccluskey"]
packages = ["simpliqm"]

[tool.setuptools_scm]

[project.scripts]
qm = "quinemccluskey.cli:cli"
qm = "simpliqm.cli:cli"

[project.urls]
Homepage = "https://github.com/djcopley/QuineMcCluskey"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_minimization.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from quinemccluskey.minimize import *
from simpliqm.minimize import *


class TestMinimization(unittest.TestCase):
Expand Down

0 comments on commit 010bf9b

Please sign in to comment.