-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (55 loc) · 1.47 KB
/
setup.py
File metadata and controls
56 lines (55 loc) · 1.47 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
from setuptools import setup, find_packages
import os
setup(
name="autoskill-ai",
version="1.0.6",
description="AI agent self-evolution plugin supporting dynamic skill generation, execution and management",
packages=find_packages(),
include_package_data=True,
package_data={
'': ['*.py', '*.yaml', '*.json', '*.md', '*.safetensors', '*.txt'],
'templates': ['*.yaml'],
'core': ['model/**/*'],
},
install_requires=[
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
],
extras_require={
"langchain": [
"langchain>=0.1.0",
"langchain-openai>=0.1.0",
"openai>=1.30.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"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
)