-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1021 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 1021 Bytes
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
#!/usr/bin/env python3
"""
Setup script for the atomic agents framework.
"""
from setuptools import setup, find_packages
setup(
name="agent-library",
version="0.1.0",
description="A modular framework for creating and managing atomic agents",
author="Your Name",
author_email="your.email@example.com",
packages=find_packages(),
install_requires=[
"pyyaml>=6.0",
"pandas>=1.3.0",
"numpy>=1.20.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.18.0",
"flake8>=4.0.0",
"mypy>=0.900",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)