-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (24 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
31 lines (24 loc) · 852 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "_build_backend"
backend-path = ["."]
[project]
name = "neuron-agentic-development"
version = "1.0"
description = "AI agents and skills for developing on AWS Neuron (Trainium/Inferentia) hardware"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
readme = "README.md"
[project.scripts]
deploy-neuron-agentic-development-to-kiro = "neuron_agentic_development.deploy:deploy_to_kiro"
deploy-neuron-agentic-development-to-claude = "neuron_agentic_development.deploy:deploy_to_claude"
[tool.setuptools.packages.find]
where = ["src"]
include = ["neuron_agentic_development*"]
[tool.distutils.build]
build-base = ".pip-build"
[tool.setuptools.package-data]
neuron_agentic_development = ["artifacts/**/*"]
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]