|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=68", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "agentflowdesk" |
| 7 | +version = "0.1.0" |
| 8 | +description = "A local-first task board and context manager for AI coding agents." |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +license = { text = "MIT" } |
| 12 | +authors = [{ name = "OracleNep" }] |
| 13 | +keywords = ["ai-agent", "coding-agent", "context-engineering", "developer-tools", "cli"] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 3 - Alpha", |
| 16 | + "Environment :: Console", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Topic :: Software Development :: Build Tools", |
| 24 | +] |
| 25 | + |
| 26 | +dependencies = [] |
| 27 | + |
| 28 | +[project.optional-dependencies] |
| 29 | +dev = ["pytest>=8.0"] |
| 30 | + |
| 31 | +[project.scripts] |
| 32 | +agentflow = "agentflow.cli:main" |
| 33 | + |
| 34 | +[tool.setuptools.packages.find] |
| 35 | +where = ["."] |
| 36 | +include = ["agentflow*"] |
| 37 | + |
| 38 | +[tool.pytest.ini_options] |
| 39 | +testpaths = ["tests"] |
| 40 | +pythonpath = ["."] |
0 commit comments