Skip to content

Commit

Permalink
Update version to 0.0.4
Browse files Browse the repository at this point in the history
Corrects setup info
  • Loading branch information
krishnadurai committed Jun 14, 2022
1 parent 46ae1ab commit 555e3d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aixplain_pipelines/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = "aixplain_pipelines"
__description__ = "aiXplain Pipelines adds AI functions to software."
__url__ = "https://github.com/aixplain/pipelines/tree/main/docs"
__version__ = "0.0.1"
__version__ = "0.0.4"
__author__ = "Thiago Castro Ferriera and Duraikrishna Selvaraju"
__author_email__ = "[email protected], [email protected]"
__license__ = "http://www.apache.org/licenses/LICENSE-2.0"
Expand All @@ -18,4 +18,4 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
"""
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import os
import sys

from setuptools import setup
from setuptools import setup, find_packages

CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 5)
Expand Down Expand Up @@ -68,7 +68,7 @@
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
packages=["aixplain_pipelines"],
packages=find_packages(exclude=["test"]),
package_dir={"aixplain_pipelines": "aixplain_pipelines"},
package_data={"": ["LICENSE"]},
include_package_data=True,
Expand Down

0 comments on commit 555e3d1

Please sign in to comment.