forked from openagents-org/openagents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (36 loc) · 1.1 KB
/
setup.cfg
File metadata and controls
40 lines (36 loc) · 1.1 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
[metadata]
name = openagents
version = 0.5.1
description = A flexible framework for building multi-agent systems with customizable protocols
long_description = file: README.md
long_description_content_type = text/markdown
author = OpenAgents Team
author_email = info@openagents.org
license = Apache-2.0
url = https://github.com/bestagents/openagents
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
= src
packages = find:
python_requires = >=3.7
install_requires =
pyyaml>=5.1
typing-extensions>=4.0.0
pydantic>=1.8.0
[options.packages.find]
where = src
[options.package_data]
openagents = protocols/*/protocol_manifest.json, configs/*.yaml
[options.entry_points]
console_scripts =
openagents = openagents.cli:main