Skip to content

Commit b556e95

Browse files
committed
Convert metadata to PEP 621 [project] table
1 parent 1e805d4 commit b556e95

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

pyproject.toml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
[build-system]
2-
requires = ["flit"]
3-
build-backend = "flit.buildapi"
2+
requires = ["flit_core >=3.2,<4"]
3+
build-backend = "flit_core.buildapi"
44

5-
[tool.flit.metadata]
6-
module = "bash_kernel"
7-
author = "Thomas Kluyver"
8-
author-email = "thomas@kluyver.me.uk"
9-
home-page = "https://github.com/takluyver/bash_kernel"
10-
requires = ["pexpect (>=4.0)", "ipykernel"]
11-
description-file = "README.rst"
5+
[project]
6+
name = "bash_kernel"
7+
authors = [
8+
{name = "Thomas Kluyver", email = "thomas@kluyver.me.uk"},
9+
]
10+
readme = "README.rst"
11+
dependencies = ["pexpect (>=4.0)", "ipykernel"]
1212
classifiers = [
13-
"Framework :: IPython",
13+
"Framework :: Jupyter",
1414
"License :: OSI Approved :: BSD License",
1515
"Programming Language :: Python :: 3",
1616
"Topic :: System :: Shells",
1717
]
18+
dynamic = ["version", "description"]
19+
20+
[project.urls]
21+
Source = "https://github.com/takluyver/bash_kernel"
1822

0 commit comments

Comments
 (0)