-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 1.7 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>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emp-agents"
version = "0.3.3"
description = "A Python library for building low-code, capable and extensible autonomous agent systems."
readme = "README.md"
requires-python = ">=3.10, <4"
license = {text = "MIT"}
authors = [
{name = "Johnny"},
{name = "Rick"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
]
keywords = ["emp", "agents", "python"]
dependencies = [
"aiohttp==3.10.5",
"anthropic==0.42.0",
"cryptography==43.0.3",
"eth-rpc-py>=0.1.30",
"eth-typeshed-py",
"fast-depends>=2.4.0",
"httpx>=0.27.2",
"pydantic>=2.9.2",
"tiktoken==0.7.0",
"fast_depends>=2.4.0",
"pyyaml",
"mcp (>=1.6.0,<2.0.0)"
]
[project.optional-dependencies]
tools = [
"tweepy>=4.14.0"
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0"
]
dev = [
"jupyter==1.1.1"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["emp_agents*"]
[tool.setuptools.package-dir]
emp_agents = "src/emp_agents"
[tool.black]
line-length = 88
target-version = ['py311', 'py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
known_third_party = ["pytest", "black", "isort"]
default_section = "THIRDPARTY"
[tool.poetry.group.dev.dependencies]
flake8-pyproject = "^1.2.3"
pytest = "^7.0.0"
pytest-asyncio = "^0.23.0"
[tool.flake8]
ignore = ["W503", "E704"]
max-line-length = 160