-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from DNA-and-Natural-Algorithms-Group/development
Development
- Loading branch information
Showing
190 changed files
with
5,073 additions
and
8,970 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,18 @@ | ||
language: python | ||
python: | ||
- "3.8" | ||
- "3.9" | ||
|
||
# command to install dependencies | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install pytest-cov pytest | ||
- pip install codecov | ||
- pip install . | ||
|
||
# command to run tests | ||
script: | ||
- pytest --cov-report term --cov=nuskell/ | ||
|
||
after_success: | ||
- codecov |
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,7 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2010-2017 Seung Woo Shin, Qing Dong, Robert Johnson, | ||
Stefan Badelt, Erik Winfree <[email protected]> | ||
Copyright (c) 2010-2020 Stefan Badelt, Seung Woo Shin, Robert Johnson, Qing Dong, Erik Winfree <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
|
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 |
---|---|---|
@@ -1,11 +1,9 @@ | ||
############################################## | ||
# Initiation of the nuskell compiler package # | ||
############################################## | ||
# | ||
# nuskell/__init__.py | ||
# NuskellCompilerProject | ||
# | ||
__version__ = "0.8" | ||
|
||
__version__ = "0.5.1" | ||
|
||
# Import the main interface to the compiler # | ||
from nuskell.compiler import translate, genCRN | ||
from nuskell.verifier import verify | ||
from nuskell.interpreter.environment import NuskellExit | ||
import logging | ||
logging.getLogger(__name__).addHandler(logging.NullHandler()) | ||
|
Oops, something went wrong.