-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 1.91 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["autoskill", "integrations", "tests", "core", "llm", "config", "templates", "utils"]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.py", "*.yaml", "*.json", "*.md", "*.safetensors", "*.txt"]
[project]
name = "autoskill-ai"
version = "1.0.6"
description = "AI agent self-evolution plugin supporting dynamic skill generation, execution and management"
authors = [
{ name = "AutoSkill Team", email = "dataanswer@163.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.11"
dependencies = [
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
langchain = [
"langchain>=0.1.0",
"langchain_openai>=0.1.0",
]
ml = [
"numpy>=1.21.2",
"pandas>=1.3.3",
"scikit-learn>=0.24.2",
]
nlp = [
"nltk>=3.6.3",
"transformers>=4.18.0",
]
deep-learning = [
"tensorflow>=2.8.0",
"torch>=1.9.0",
]
skill-fingerprint = [
"sentence-transformers>=2.2.0",
]
all = [
"autoskill-ai[langchain,ml,nlp,deep-learning,skill-fingerprint]",
]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"flake8>=4.0.0"
]
[project.scripts]
auto-skill = "autoskill.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''/(\n \.git
| \.venv
| venvs
| build
| dist
)/'''
[tool.isort]
profile = "black"
[tool.flake8]
extend-ignore = ["E203", "W503"]
max-line-length = 88