generated from ken-morel/pip-package-template-docker
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (52 loc) · 1.59 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
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "shellsy"
version = "v1.0.0a1.dev1"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GPLv3.0 License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"comberload",
"rich"
]
description = "Build over amongst in and expose your sets of command line utilities"
#dynamic
keywords = ["shellsy", "console", "plugin", "prompt_toolkit", "rich"]
license = {file="LICENSE"}
maintainers = [
{name="ken-morel", email="[email protected]"}
]
authors = [
{name="ken-morel", email="[email protected]"}
]
readme = "README.md"
requires-python = ">= 3.10"
[project.optional-dependencies]
gui = ["ttkbootstrap"]
cli = [
"prompt_toolkit",
]
[project.scripts]
shellsy = "shellsy.__main__:main"
[project.gui-scripts]
shellsy-ide = "shellsy.ide.__main__:main"
[project.urls]
Homepage = "https://shellsy.vercel.app"
Documentation = "https://shellsy.readthedocs.org"
Repository = "https://github.com/ken-morel/shellsy.git"
Issues = "https://github.com/ken-morel/shellsy/issues"
Changelog = "https://github.com/ken-morel/shellsy/blob/main/doc/CHANGELOG.rst"