-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 945 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
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tooler"
dynamic = ["version"]
description = "Tooler: Create friendly devops tools in minutes"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Josh Yudaken", email = "[email protected]" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
dependencies = []
[project.optional-dependencies]
[project.scripts]
tooler-ssh = "tooler.main:ssh"
[project.urls]
Homepage = "http://qix.github.io/tooler"
[tool.hatch.version]
path = "tooler/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/tooler",
]