diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a9f0c89 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE README.md requirements*.txt +recursive-include piro *.py *.json *.pickle *.yaml *.csv *.model *.mps *.mpl *.mwf *.sdu *.txt diff --git a/piro/__init__.py b/piro/__init__.py index 73aabce..26b4725 100644 --- a/piro/__init__.py +++ b/piro/__init__.py @@ -1 +1 @@ -__version__ = "2021.10.6-post0" +__version__ = "2021.10.6-post1" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..15387d4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +matminer==0.7.4 +scikit-learn==0.24.2 +plotly==5.2.1 +pymongo==3.12.0 +pydantic==1.8.2 diff --git a/setup.py b/setup.py index 36995a0..c697101 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="piro", - version="2021.10.6-post0", + version="2021.10.6-post1", packages=find_packages(), description=DESCRIPTION, long_description=LONG_DESCRIPTION, @@ -33,7 +33,7 @@ ] }, package_data={ - "piro": ["*.pickle", "*.json"] + "piro.files": ["*.pickle", "*.json"] }, include_package_data=True, author="AMDD - Toyota Research Institute",