olca 0.2.11__tar.gz → 0.2.13__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {olca-0.2.11 → olca-0.2.13}/PKG-INFO +1 -1
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/PKG-INFO +1 -1
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/entry_points.txt +1 -1
- {olca-0.2.11 → olca-0.2.13}/pyproject.toml +2 -2
- {olca-0.2.11 → olca-0.2.13}/setup.py +7 -1
- {olca-0.2.11 → olca-0.2.13}/LICENSE +0 -0
- {olca-0.2.11 → olca-0.2.13}/README.md +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca/__init__.py +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca/fusewill_cli.py +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca/fusewill_utils.py +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca/olcacli.py +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/SOURCES.txt +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/dependency_links.txt +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/requires.txt +0 -0
- {olca-0.2.11 → olca-0.2.13}/olca.egg-info/top_level.txt +0 -0
- {olca-0.2.11 → olca-0.2.13}/setup.cfg +0 -0
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
7
7
|
|
8
8
|
[project]
|
9
9
|
name = "olca"
|
10
|
-
version = "0.2.
|
10
|
+
version = "0.2.13"
|
11
11
|
|
12
12
|
description = "A Python package for experimental usage of Langchain and Human-in-the-Loop"
|
13
13
|
readme = "README.md"
|
@@ -40,4 +40,4 @@ classifiers = [
|
|
40
40
|
|
41
41
|
[project.scripts]
|
42
42
|
olca2 = "olca.olcacli:main"
|
43
|
-
fusewill="olca.
|
43
|
+
fusewill = "olca.fusewill_cli:main"
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='olca',
|
5
|
-
version = "0.2.
|
5
|
+
version = "0.2.13",
|
6
6
|
author='Jean GUillaume ISabelle',
|
7
7
|
author_email='jgi@jgwill.com',
|
8
8
|
description='A Python package for experimenting with Langchain agent and interactivity in Terminal modalities.',
|
@@ -33,6 +33,12 @@ setup(
|
|
33
33
|
'llm',
|
34
34
|
'langgraph'
|
35
35
|
],
|
36
|
+
entry_points={
|
37
|
+
'console_scripts': [
|
38
|
+
'olca2=olca.olcacli:main',
|
39
|
+
'fusewill=olca.fusewill_cli:main',
|
40
|
+
],
|
41
|
+
},
|
36
42
|
classifiers=[
|
37
43
|
'Programming Language :: Python :: 3',
|
38
44
|
'License :: OSI Approved :: MIT License',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|