-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = [ "setuptools>=42", "wheel", "build",]
build-backend = "setuptools.build_meta"
[project]
name = "primisai"
version = "0.8.1"
description = "Nexus is a powerful and flexible Python package for managing AI agents and coordinating complex tasks using LLMs."
requires-python = ">=3.10"
dependencies = [ "openai==1.66.3", "python-dotenv==1.0.1", "streamlit>=1.38.0", "pytest==8.3.4", "PyYAML==6.0.2", "mcp[cli]>=1.10.0",]
keywords = [ "AI", "LLM", "framework", "AI agents",]
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
[[project.authors]]
name = "PrimisAI"
email = "info@primis.ai"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "MIT"
[project.urls]
changelog = "https://github.com/PrimisAI/nexus/blob/main/CHANGELOG.md"
homepage = "https://github.com/PrimisAI/nexus"
issues = "https://github.com/PrimisAI/nexus/issues"
repository = "https://github.com/PrimisAI/nexus.git"
[tool.setuptools]
include-package-data = true
[tool.semantic_release]
version_variables = [ "primisai/__init__.py:__version__",]
version_toml = [ "pyproject.toml:project.version",]
version_source = "commit"
commit_message = "chore(release): 🚀 bump version to {version}"
[tool.setuptools.packages.find]
exclude = [ "tests*",]