Skip to content

Commit

Permalink
fix: Add missing dependencies to requirements and update package conf…
Browse files Browse the repository at this point in the history
…iguration
  • Loading branch information
Cyb3rWard0g committed Jan 2, 2025
1 parent 8b5f202 commit 77204d5
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ cd your-repo
3. Set Up a Virtual Environment (optional but recommended):

```python
python -m venv venv
source venv/bin/activate # On Windows: .\venv\Scripts\activate
python -m venv .venv
source .venv/bin/activate # On Windows: .\venv\Scripts\activate
```

4. Install the Project in Editable Mode:
Expand Down
33 changes: 32 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 14 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,26 @@ build-backend = "setuptools.build_meta"

[project]
name = "floki-ai"
version = "0.7.0"
version = "0.7.1"
description = "Agentic Workflows Made Simple"
readme = "README.md"
authors = [{ name = "Roberto Rodriguez" }]
license = { text = "MIT License" }
requires-python = ">=3.9, <3.13"
requires-python = ">=3.9"
keywords = ["LLM", "Cybersecurity", "AI", "Agents"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

dependencies = [
Expand All @@ -33,14 +39,16 @@ dependencies = [
"dapr==1.14.0",
"dapr-ext-fastapi==1.14.0",
"dapr-ext-workflow==0.5.0",
"colorama==0.4.6",
"cloudevents==1.11.0",
]

[project.urls]
homepage = "https://github.com/Cyb3rWard0g/floki"

[tool.poetry]
name = "floki"
version = "0.7.0"
version = "0.7.1"
description = "Agentic Workflows Made Simple"
authors = ["Roberto Rodriguez"]
license = "MIT"
Expand Down Expand Up @@ -73,6 +81,8 @@ starlette = "^0.40.0"
dapr-ext-workflow = "0.5.0"
dapr-ext-fastapi = "1.14.0"
dapr = "1.14.0"
colorama = "0.4.6"
cloudevents = "1.11.0"

[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ azure-identity==1.19.0
dapr==1.14.0
dapr-ext-fastapi==1.14.0
dapr-ext-workflow==0.5.0
colorama==0.4.6
cloudevents==1.11.0
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="floki-ai",
version="0.7.0",
version="0.7.1",
author="Roberto Rodriguez",
description="Agentic Workflows Made Simple",
long_description=long_description,
Expand All @@ -32,7 +32,9 @@
"azure-identity==1.19.0",
"dapr==1.14.0",
"dapr-ext-fastapi==1.14.0",
"dapr-ext-workflow==0.5.0"
"dapr-ext-workflow==0.5.0",
"colorama==0.4.6",
"cloudevents==1.11.0"
],
license='MIT',
classifiers=[
Expand Down

0 comments on commit 77204d5

Please sign in to comment.