Skip to content

Commit

Permalink
Added pyproject.toml file so the CLI could be installed via pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Oct 13, 2023
1 parent b87a0f1 commit 5b081e7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "cq-cli"
version = "2.1.0"
license = "Apache-2.0"
authors = [
{ name="Jeremy Wright" },
]
description = "Command Line Interface for executing CadQuery scripts and converting their output to another format."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'cadquery >= 2.3.1',
]

[project.urls]
"Homepage" = "https://github.com/CadQuery/cq-cli"
"Bug Tracker" = "https://github.com/CadQuery/cq-cli/issues"

0 comments on commit 5b081e7

Please sign in to comment.