-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 902 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reloader_cli"
version = "1.0.41"
description = "Help in fine tuning your changes with this minimalist CLI tool that reloads your python script after every save."
readme = "README.md"
authors = [{ name = "Aman Ahmed Siddiqui", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["debugger", "reloader", "cli_tool"]
dependencies = []
requires-python = ">=3.8"
[project.optional-dependencies]
build = ['twine', 'build']
dev = ["black", "pytest", "coverage"]
[project.urls]
Homepage = "https://github.com/sid-am-ahd935/reloader_cli"
[project.scripts]
reloader = "reloader_cli.__main__:main"