Skip to content

Commit

Permalink
Forgot master gear mapping v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bkuczenski committed Apr 13, 2021
1 parent a5e6583 commit d1c45eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
'''
VERSION HISTORY
1.0.4 - forgot master_gear_mapping.csv
1.0.3 - Added MANIFEST.in and included model library and docs
1.0.2 - Added automatic tabulation of models for SciAdv paper; released to PyPI
Expand All @@ -19,7 +20,7 @@
0.1.0 - 18 November 2020 - Initial setup
'''

VERSION = '1.0.3'
VERSION = '1.0.4'

setup(
name="unit_gears",
Expand All @@ -34,5 +35,5 @@
long_description=open('README.md').read(),
packages=find_packages(),
include_package_data=True,
package_data={'unit_gears': ['models/*.json', 'reference/*.json', 'templates/*.json']}
package_data={'unit_gears': ['models/*.json', 'reference/*.json', 'reference/*.csv', 'templates/*.json']}
)
2 changes: 1 addition & 1 deletion unit_gears/gear_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from collections import defaultdict
# from itertools import chain

MASTER_GEAR_FILE = os.path.join(os.path.dirname(__file__), '..', 'master_gear_mapping.csv')
MASTER_GEAR_FILE = os.path.join(os.path.dirname(__file__), 'reference', 'master_gear_mapping.csv')


class GearMapper(object):
Expand Down
File renamed without changes.

0 comments on commit d1c45eb

Please sign in to comment.