Skip to content

Commit 9371369

Browse files
committed
Add pyproject.toml to make installable with pip
1 parent 0ef3541 commit 9371369

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "SimpleITKSpellChecking"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="David Chen", email="dchen@mail.nih.gov" },
10+
]
11+
description = "A script to automatically spell checks comments of a codebase."
12+
readme = "README.md"
13+
requires-python = ">=3.8"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
]
19+
dynamic = ["dependencies"]
20+
21+
[project.urls]
22+
"Homepage" = "https://github.com/SimpleITK/SimpleITKSpellChecking"
23+
"Bug Tracker" = "https://github.com/SimpleITK/SimpleITKSpellChecking"
24+
25+
[tool.setuptools.dynamic]
26+
dependencies = {file = ["requirements.txt"]}
27+
28+
[project.scripts]
29+
codespell = "codespell:main"
30+

0 commit comments

Comments
 (0)