Skip to content

Commit

Permalink
clarified __init__.__all__
Browse files Browse the repository at this point in the history
  • Loading branch information
jdechalendar committed Jul 7, 2024
1 parent c79383f commit 6ac735e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name="gridemissions",
package_dir={"": "src"},
packages=find_packages("src"),
version="0.1.9",
version="0.1.9.dev1",
python_requires=">=3.11",
install_requires=["requests", "pandas>=2.1.0", "matplotlib>=3.4.2"],
extras_require={
Expand Down
4 changes: 4 additions & 0 deletions src/gridemissions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
from .configure import config, configure_logging
from .load import GraphData, read_csv, load_bulk
from .emissions import EmissionsCalc
import eia_api_v1
import eia_api_v2

try:
from .clean import BasicCleaner, RollingCleaner, CvxCleaner
Expand All @@ -15,6 +17,8 @@
__all__ = [
"config",
"configure_logging",
"eia_api_v1",
"eia_api_v2",
"EmissionsCalc",
"GraphData",
"read_csv",
Expand Down

0 comments on commit 6ac735e

Please sign in to comment.