Skip to content

Commit

Permalink
fixed package building
Browse files Browse the repository at this point in the history
  • Loading branch information
fboerman committed Mar 21, 2022
1 parent b31334c commit 9c5d10d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
1 change: 1 addition & 0 deletions manifest.in → MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include README.md
include LICENSE
include requirements.txt
include entsoe/geo/geojson/*.geojson
include entsoe/*
2 changes: 1 addition & 1 deletion entsoe/entsoe.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .decorators import retry, paginated, year_limited, day_limited, documents_limited

__title__ = "entsoe-py"
__version__ = "0.5.1"
__version__ = "0.5.2"
__author__ = "EnergieID.be, Frank Boerman"
__license__ = "MIT"

Expand Down
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,5 @@
# your project is installed.
install_requires=['requests', 'pytz', 'beautifulsoup4', 'pandas>=1.4.0'],

# If there are data files included in your packages that need to be
# installed, specify them here. If using Python 2.6 or less, then these
# have to be included in MANIFEST.in as well.
# Note: for creating the source distribution, they had to be included in the
# MANIFEST.in as well.
package_data={
'entsoe-py': ['LICENSE', 'README.md', 'entsoe/geo/geojson/*.geojson'],
},
include_package_data=True,
)

0 comments on commit 9c5d10d

Please sign in to comment.