initial commit
Some checks failed
gitea-physics/pdme/pipeline/head There was a failure building this commit

This commit is contained in:
2022-01-01 15:50:49 -06:00
commit a2c1d56bc8
15 changed files with 749 additions and 0 deletions

0
tests/__init__.py Normal file
View File

7
tests/test_pdme.py Normal file
View File

@@ -0,0 +1,7 @@
from pdme import __version__
import pdme
def test_version():
assert __version__ == '0.0.1'
assert pdme.get_version() == __version__