summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in4
-rw-r--r--setup.cfg3
-rw-r--r--version.py3
3 files changed, 8 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 05c3182..63e3421 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,8 +1,8 @@
-include AUTHORS CHANGES LICENSE README.rst BADGES.rst
+include AUTHORS CHANGES LICENSE README.rst BADGES.rst version.txt
recursive-include pint *
recursive-include docs *
recursive-include bench *
prune docs/_build
prune docs/_themes/.git
-exclude .editorconfig bors.toml pull_request_template.md requirements_docs.txt
+exclude .editorconfig bors.toml pull_request_template.md requirements_docs.txt version.py
global-exclude *.pyc *~ .DS_Store *__pycache__* *.pyo .travis-exclude.yml
diff --git a/setup.cfg b/setup.cfg
index 20ad8f0..a95b2ca 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -72,3 +72,6 @@ include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
+
+[zest.releaser]
+python-file-with-version = version.py \ No newline at end of file
diff --git a/version.py b/version.py
new file mode 100644
index 0000000..12509a0
--- /dev/null
+++ b/version.py
@@ -0,0 +1,3 @@
+# This is just for zest.releaser. Do not touch
+
+__version__ = "0.10.dev0"