Skip to content

Commit

Permalink
0.2.1. Packaging fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed Dec 3, 2019
1 parent e291b3d commit d0337df
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# Changelog

0.2 (2019-11-29)
### 0.2.1 (2019-12-03)

Fix packaging errors

## 0.2 (2019-11-29)

* Ingest JSON-LD (compressed as zip)
* Ingest Excel BOM
* Output Pandas CSV with format based on [Federal LCA-Commons Elementary Flow Mapping](https://github.com/USEPA/Federal-LCA-Commons-Elementary-Flow-List/blob/master/format%20specs/FlowMapping.md)

0.1.1 (2019-10-21)
### 0.1.1 (2019-10-21)

Bugfix release for data clobbering on export

0.1 (2019-10-21)
## 0.1 (2019-10-21)

First public release
2 changes: 1 addition & 1 deletion perdu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = (0, 2)
__version__ = (0, 2, 1)

from .filesystem import base_dir, export_dir
from .searching import (
Expand Down
Empty file added perdu/bin/__init__.py
Empty file.
6 changes: 5 additions & 1 deletion perdu/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@
import os


BASE_DIR = Path(__file__).resolve().parent

perdu_app = Flask(
"perdu_app", static_folder="perdu/assets/", template_folder="perdu/assets/templates"
"perdu_app",
static_folder=BASE_DIR / "assets",
template_folder=BASE_DIR / "assets" / "templates"
)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def package_files(directory):

setup(
name='perdu',
version="0.2",
version="0.2.1",
packages=packages,
author="Chris Mutel",
author_email="cmutel@gmail.com",
Expand Down

0 comments on commit d0337df

Please sign in to comment.