optimizing a gate level bcm to the end of the earth and back
at main 25 lines 519 B view raw
1[project] 2name = "bcd-optimization" 3version = "0.1.0" 4description = "Multi-output logic synthesis solver for BCD to 7-segment decoders" 5readme = "README.md" 6requires-python = ">=3.10" 7license = "MIT" 8authors = [ 9 { name = "Kieran Klukas", email = "kieran@dunkirk.sh" } 10] 11dependencies = [ 12 "python-sat>=0.1.8", 13] 14 15[project.optional-dependencies] 16dev = [ 17 "pytest>=8.0.0", 18] 19 20[project.scripts] 21bcd-optimize = "bcd_optimization.cli:main" 22 23[build-system] 24requires = ["hatchling"] 25build-backend = "hatchling.build"