Skip to content

Commit

Permalink
version update, adding mastml/data to build
Browse files Browse the repository at this point in the history
  • Loading branch information
rjacobs914 committed Apr 12, 2021
1 parent c448c96 commit 315cf02
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1
1 change: 0 additions & 1 deletion __init__.py

This file was deleted.

8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
#print("Check with `python --version`")

# One of the techniques from https://packaging.python.org/guides/single-sourcing-package-version/
verstr = "unknown"
verstr = "3.0.1"
try:
verstr = open("VERSION", "rt").read().strip()
except EnvironmentError:
pass # Okay, there is no version file.

setup(
name="mastml",
packages=['mastml', 'mastml.magpie', 'mastml.tests.unit_tests'],
package_data={'mastml.magpie': ["*.*"], 'mastml.tests.unit_tests': ["*.*"]},
packages=['mastml', 'mastml.magpie', 'mastml.tests.unit_tests', 'mastml.data'],
package_data={'mastml.magpie': ["*.*"], 'mastml.tests.unit_tests': ["*.*"], 'mastml.data': ["*.*"]},
include_package_data = True,
version=verstr,
install_requires=[
Expand All @@ -46,7 +46,7 @@
"openpyxl",
"pandas",
"pymatgen==2021.3.9",
"scikit-learn",
"scikit-learn>=0.24.1",
"scikit-optimize",
"scipy",
"sphinx-automodapi",
Expand Down

0 comments on commit 315cf02

Please sign in to comment.