This repository has been archived by the owner on Apr 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
59 lines (53 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "typer-cli"
description = "Run Typer scripts with completion, without having to create a package, using Typer CLI."
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{name = "Sebastián Ramírez", email = "[email protected]"},
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
]
dynamic = ["version"]
dependencies = [
"typer >=0.4.0,<=0.7.0",
"colorama >=0.4.3,<=0.5.0",
"shellingham >=1.3.2,<=1.4.0",
]
[project.urls]
Homepage = "https://github.com/tiangolo/typer-cli"
Documentation = "https://typer.tiangolo.com/typer-cli/"
[project.scripts]
typer = "typer_cli.main:main"
[tool.hatch.version]
path = "typer_cli/__init__.py"
[tool.isort]
profile = "black"