NREL / ditto

DiTTo is a Distribution Transformation Tool that aims at providing an open source framework to convert various distribution systems modeling formats.
https://nrel.github.io/ditto/
BSD 3-Clause "New" or "Revised" License
69 stars 36 forks source link

Add package_data to setup.py #293

Closed kdheepak closed 5 years ago

codecov-io commented 5 years ago

Codecov Report

Merging #293 into master will increase coverage by 0.01%. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #293      +/-   ##
==========================================
+ Coverage   40.21%   40.22%   +0.01%     
==========================================
  Files          86       86              
  Lines       19993    19993              
==========================================
+ Hits         8040     8042       +2     
+ Misses      11953    11951       -2
Impacted Files Coverage Δ
ditto/metrics/network_analysis.py 48.99% <0%> (+0.21%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 2a10954...4fb9234. Read the comment docs.

kdheepak commented 5 years ago

I verified that this works with a fresh environment:

$ python
Python 3.6.5 |Anaconda, Inc.| (default, Apr 26 2018, 08:42:37)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from ditto.readers.gridlabd.read import Reader
>>> import ditto
>>> ditto
<module 'ditto' from '/Users/$USER/miniconda3/envs/ditto-env-py3.6/lib/python3.6/site-packages/ditto/__init__.py'>
>>>

This should resolve the first part of the issues in #292 and #287.