diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c1ae12b7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +prune src/nectarchain/_dev_version +prune .github +exclude .gitignore + +global-exclude *.pyc *.o \ No newline at end of file diff --git a/src/nectarchain/__init__.py b/src/nectarchain/__init__.py new file mode 100644 index 00000000..0d42b290 --- /dev/null +++ b/src/nectarchain/__init__.py @@ -0,0 +1,3 @@ +from .version import __version__ + +__all__ = ['__version__'] \ No newline at end of file diff --git a/src/nectarchain/tests/test_version.py b/src/nectarchain/tests/test_version.py new file mode 100644 index 00000000..b62c0c66 --- /dev/null +++ b/src/nectarchain/tests/test_version.py @@ -0,0 +1,4 @@ +def test_version(): + from nectarchain import __version__ + + assert __version__ != '0.0.0' \ No newline at end of file