Skip to content

Commit

Permalink
Merge pull request #9 from tilezen/zerebubuth/changelog
Browse files Browse the repository at this point in the history
Add changelog.
  • Loading branch information
zerebubuth committed Sep 14, 2018
2 parents 22a6431 + a38a1e5 commit dcbc533
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,4 @@
v1.0.0
------

* Initial release.
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
1.0.0
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -2,6 +2,10 @@
from distutils.extension import Extension
import os.path

version_path = os.path.join(os.path.dirname(__file__), 'VERSION')
with open(version_path) as fh:
version = fh.read().strip()

extension = Extension(
"coanacatl",
["coanacatl/coanacatl.cpp"],
Expand All @@ -18,6 +22,7 @@

setup(
name="coanacatl",
version=version,
ext_modules=[extension],
test_suite='test',
)

0 comments on commit dcbc533

Please sign in to comment.