|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "agentci" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Agent CI command-line interface" |
| 9 | +authors = [ |
| 10 | + {name = "Agent CI", email = "hello@agent-ci.com"}, |
| 11 | + {name = "Travis Dent", email = "root@a10k.co"} |
| 12 | +] |
| 13 | +readme = "README.md" |
| 14 | +requires-python = ">=3.10" |
| 15 | +license = {text = "MIT"} |
| 16 | +keywords = ["agentci", "ci", "testing", "agents", "cli"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 3 - Alpha", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.10", |
| 23 | + "Programming Language :: Python :: 3.11", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | +] |
| 26 | +dependencies = [] |
| 27 | + |
| 28 | +[project.urls] |
| 29 | +Homepage = "https://agent-ci.com" |
| 30 | +Repository = "https://github.com/Agent-CI/cli.git" |
| 31 | +Issues = "https://github.com/Agent-CI/cli/issues" |
| 32 | + |
| 33 | +[project.scripts] |
| 34 | +agentci = "agentci.cli:main" |
| 35 | + |
| 36 | +[tool.setuptools.packages.find] |
| 37 | +where = ["."] |
| 38 | +include = ["agentci*"] |
0 commit comments