-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
305a420
commit 2416e83
Showing
2 changed files
with
15 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,5 +1,18 @@ | ||
![Docs Status](https://readthedocs.org/projects/pymint/badge/) | ||
|
||
# MINT | ||
|
||
MINT is a language to describe Microfluidic Hardware Netlists. MINT is the name of the Microfluidic Netlist language used to describe microfluidic devices for Fluigi to place and route. MINT is a flavor of (MHDL) Microfluidic Hardware Description Language that can be used to represent Microfluidic Circuits. | ||
|
||
|
||
|
||
## Documentation | ||
|
||
Chechttps://pymint.readthedocs.io/en/latest/ | ||
|
||
|
||
## Updating the ANTLR parser | ||
|
||
``` | ||
antlr4 -o ./pymint/antlrgen -listener -visitor -Dlanguage=Python3 -lib . ./mint.g4 | ||
``` |
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
[tool.poetry] | ||
name = "pymint" | ||
version = "0.2.6" | ||
version = "0.2.7" | ||
description = "MINT is a human readable language to describe Microfluidic Hardware Netlists. MINT is the name of the Microfluidic Netlist language used to describe microfluidic devices for Fluigi to place and route. Mint is a flavor of (MHDL) Microfluidic Hardware Description Language that can be used to represent Microfluidic Circuits." | ||
authors = ["Radhakrishna Sanka <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
packages = [ | ||
{ include = "pymint/*.py" } | ||
] | ||
docs = "https://pymint.readthedocs.io/en/latest/" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
|