-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
44 lines (39 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling==1.25.0"]
build-backend = "hatchling.build"
[project]
name = "flask-shell-ipython"
version = "0.5.3"
description = "Replace default `flask shell` command by similar command running IPython."
readme = "README.md"
readme-content-type = "text/markdown"
requires-python = ">=3.8, <4.0"
license = "MIT"
# expect `license-files` field to break on any new version of hatch, because
# PEP-639 is already changed from this structure as of the time of writing
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "Andrew Grigorev", email = "[email protected]" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flask",
"Framework :: IPython",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"Flask>=1.0",
"click",
"IPython>=5.0.0"
]
[project.urls]
Homepage = "https://github.com/ei-grad/flask-shell-ipython"
Changelog = "https://github.com/ei-grad/flask-shell-ipython/blob/main/CHANGELOG.md"
[project.entry-points."flask.commands"]
shell = "flask_shell_ipython:shell"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
]