This repository was archived by the owner on Apr 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (51 loc) · 1.68 KB
/
setup.py
File metadata and controls
53 lines (51 loc) · 1.68 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="openhands-dynamic-agent-factor",
version="1.0.2",
author="Your Name",
author_email="your.email@example.com",
description="A powerful system for analyzing and generating technology-specific agents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/openhands-dynamic-agent-factor",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
],
python_requires=">=3.8",
install_requires=[
"requests>=2.25.0",
"beautifulsoup4>=4.9.0",
"typing-extensions>=4.0.0",
"pydantic>=2.0.0",
"PyYAML>=6.0",
"mkdocs>=1.4.0",
"mkdocs-material>=9.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"pylint>=2.17.0",
],
},
entry_points={
"console_scripts": [
"openhands=openhands_dynamic_agent_factory.core.cli:main",
],
},
)