Skip to content

Commit 555e3d1

Browse files
committed
Update version to 0.0.4
Corrects setup info
1 parent 46ae1ab commit 555e3d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

aixplain_pipelines/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "aixplain_pipelines"
22
__description__ = "aiXplain Pipelines adds AI functions to software."
33
__url__ = "https://github.com/aixplain/pipelines/tree/main/docs"
4-
__version__ = "0.0.1"
4+
__version__ = "0.0.4"
55
__author__ = "Thiago Castro Ferriera and Duraikrishna Selvaraju"
66
77
__license__ = "http://www.apache.org/licenses/LICENSE-2.0"
@@ -18,4 +18,4 @@
1818
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1919
See the License for the specific language governing permissions and
2020
limitations under the License.
21-
"""
21+
"""

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import os
2222
import sys
2323

24-
from setuptools import setup
24+
from setuptools import setup, find_packages
2525

2626
CURRENT_PYTHON = sys.version_info[:2]
2727
REQUIRED_PYTHON = (3, 5)
@@ -68,7 +68,7 @@
6868
author=about["__author__"],
6969
author_email=about["__author_email__"],
7070
url=about["__url__"],
71-
packages=["aixplain_pipelines"],
71+
packages=find_packages(exclude=["test"]),
7272
package_dir={"aixplain_pipelines": "aixplain_pipelines"},
7373
package_data={"": ["LICENSE"]},
7474
include_package_data=True,

0 commit comments

Comments
 (0)