Skip to content

Commit

Permalink
Fixed Vs code reference bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbanP committed Oct 17, 2024
1 parent 282fa37 commit 2c754d0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include README.md
include logoNoema.png
4 changes: 2 additions & 2 deletions Noema/conditionnal.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .returnStep import Return
from .step import *
from .var import Var
from .step import Step, FlowStep
from .var import *
from .subject import *

class IF(FlowStep):
Expand Down
2 changes: 1 addition & 1 deletion Noema/debug.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
from Logos.step import Step
from .step import Step


class Print(Step):
Expand Down
17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@

from setuptools import setup, find_packages

# Lire le contenu du README.md
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='Noema',
version='0.1.0',
version='1.0.2',
description='Description of Noema',
author='Your Name',
author_email='[email protected]',
url='https://github.com/yourusername/Noema',
long_description=long_description, # Inclure la description longue
long_description_content_type='text/markdown', # Spécifiez le format de la description (markdown ou rst)
author='Alban Perli',
author_email='[email protected]',
url='https://github.com/AlbanPerli/Noema-Declarative-AI',
packages=find_packages(),
install_requires=[
'guidance',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache 2.0 License',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
Expand Down

0 comments on commit 2c754d0

Please sign in to comment.