-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AlbanP
committed
Oct 17, 2024
1 parent
282fa37
commit 2c754d0
Showing
4 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include README.md | ||
include logoNoema.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|