-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (31 loc) · 992 Bytes
/
pyproject.toml
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
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "comment_spell_check"
authors = [
{ name="David Chen", email="[email protected]" },
]
description = "A script to automatically spell checks comments of a codebase."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/SimpleITK/CommentSpellCheck"
"Bug Tracker" = "https://github.com/SimpleITK/CommentSpellCheck"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
comment_spell_check = "comment_spell_check:main"
[tool.setuptools_scm]
local_scheme = "dirty-tag"
[tool.flake8]
max-line-length = 88
ignore = ['E203', 'W503']
max_complexity = 25