diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-03-31 16:37:17 -0400 |
---|---|---|
committer | Nadia Dencheva <nadia.dencheva@gmail.com> | 2016-07-31 17:15:03 -0400 |
commit | 6ec4d4b6c695bf8b259da24ea7d61166a5a7f143 (patch) | |
tree | 3b6907c4534ffbcada9ea2d291eb3b4208fbd574 | |
parent | 0e7084b80d6f1c6ceaf6ebe59b0a20d3f8a54643 (diff) | |
download | stwcs_hcf-6ec4d4b6c695bf8b259da24ea7d61166a5a7f143.tar.gz |
Implement RELIC
-rwxr-xr-x | .gitignore | 7 | ||||
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rw-r--r-- | RECON-INFO | 1 | ||||
-rwxr-xr-x | setup.py | 6 |
4 files changed, 10 insertions, 6 deletions
@@ -1,13 +1,16 @@ # Compiled files *.py[co] *.a -*.o +RELIC-INFO +lib/*/version.py +build/ +dist/ +*.pyc *.so __pycache__ # Other generated files */version.py -lib/stwcs/version.py htmlcov MANIFEST .coverage diff --git a/MANIFEST.in b/MANIFEST.in index 756931f..db2348e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include RECON-INFO +include RELIC-INFO diff --git a/RECON-INFO b/RECON-INFO new file mode 100644 index 0000000..98947be --- /dev/null +++ b/RECON-INFO @@ -0,0 +1 @@ +{"pep386": "1.2.3", "short": "1.2.3", "long": "1.2.3-0-g89520f12-dirty", "date": "2016-03-15 19:37:45 -0400", "dirty": true, "commit": "89520f12", "post": "0"} @@ -1,12 +1,12 @@ #!/usr/bin/env python -import recon.release +import relic.release from glob import glob from numpy import get_include as np_include from setuptools import setup, find_packages, Extension -version = recon.release.get_info() -recon.release.write_template(version, 'lib/stwcs') +version = relic.release.get_info() +relic.release.write_template(version, 'lib/stwcs') setup( name = 'stwcs', |