File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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"
6677__license__ = "http://www.apache.org/licenses/LICENSE-2.0"
1818WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1919See the License for the specific language governing permissions and
2020limitations under the License.
21- """
21+ """
Original file line number Diff line number Diff line change 2121import os
2222import sys
2323
24- from setuptools import setup
24+ from setuptools import setup , find_packages
2525
2626CURRENT_PYTHON = sys .version_info [:2 ]
2727REQUIRED_PYTHON = (3 , 5 )
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 ,
You can’t perform that action at this time.
0 commit comments