Skip to content

Commit 2c754d0

Browse files
author
AlbanP
committed
Fixed Vs code reference bug
1 parent 282fa37 commit 2c754d0

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
include logoNoema.png

Noema/conditionnal.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .returnStep import Return
2-
from .step import *
3-
from .var import Var
2+
from .step import Step, FlowStep
3+
from .var import *
44
from .subject import *
55

66
class IF(FlowStep):

Noema/debug.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import re
2-
from Logos.step import Step
2+
from .step import Step
33

44

55
class Print(Step):

setup.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1-
21
from setuptools import setup, find_packages
32

3+
# Lire le contenu du README.md
4+
with open("README.md", "r", encoding="utf-8") as fh:
5+
long_description = fh.read()
6+
47
setup(
58
name='Noema',
6-
version='0.1.0',
9+
version='1.0.2',
710
description='Description of Noema',
8-
author='Your Name',
9-
author_email='[email protected]',
10-
url='https://github.com/yourusername/Noema',
11+
long_description=long_description, # Inclure la description longue
12+
long_description_content_type='text/markdown', # Spécifiez le format de la description (markdown ou rst)
13+
author='Alban Perli',
14+
author_email='[email protected]',
15+
url='https://github.com/AlbanPerli/Noema-Declarative-AI',
1116
packages=find_packages(),
1217
install_requires=[
1318
'guidance',
1419
],
1520
classifiers=[
1621
'Programming Language :: Python :: 3',
17-
'License :: OSI Approved :: Apache 2.0 License',
22+
'License :: OSI Approved :: Apache Software License',
1823
'Operating System :: OS Independent',
1924
],
2025
python_requires='>=3.6',

0 commit comments

Comments
 (0)