Skip to content

Commit b59bebe

Browse files
committed
pyproject fix
1 parent 91d0694 commit b59bebe

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@ requires = ["setuptools>=64"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name="safecmd"
6+
name = "safecmd"
77
dynamic = ["version"]
88
description = "Call commands safely by checking them rigorously against an allow-list"
99
readme = "README.md"
10-
requires-python=">=3.9"
10+
requires-python = ">=3.9"
1111
license = {text = "Apache-2.0"}
1212
authors = [{name = "Jeremy Howard", email = "[email protected]"}]
1313
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
14-
classifiers = [
15-
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3 :: Only",
17-
]
18-
dependencies = ["fastcore","shfmt-py"]
14+
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
15+
dependencies = ['fastcore', 'shfmt-py']
1916

2017
[project.urls]
2118
Repository = "https://github.com/AnswerDotAI/safecmd"
@@ -24,8 +21,10 @@ Documentation = "https://AnswerDotAI.github.io/safecmd"
2421
[project.entry-points.nbdev]
2522
safecmd = "safecmd._modidx:d"
2623

24+
2725
[project.scripts]
2826
safecmd = "safecmd.core:main"
27+
2928
[tool.setuptools.dynamic]
3029
version = {attr = "safecmd.__version__"}
3130

0 commit comments

Comments
 (0)