You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
[build-system] |
|
requires = ["setuptools>=45", "wheel"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "ttkode" |
|
dynamic = ["version"] |
|
readme = {file = "README.md", content-type = "text/markdown"} |
|
authors = [ |
|
{name = "Eugenio Parodi", email = "ceccopierangiolieugenio@googlemail.com"}, |
|
] |
|
description = "Terminal ToolKit Studio Code editor" |
|
requires-python = ">=3.9" |
|
license = {text = "MIT"} |
|
classifiers = [ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: OS Independent", |
|
"Development Status :: 3 - Alpha", |
|
"Environment :: Console", |
|
"Intended Audience :: Developers", |
|
"Intended Audience :: Information Technology", |
|
"Topic :: Terminals", |
|
"Topic :: Software Development :: User Interfaces", |
|
] |
|
dependencies = [ |
|
'pyTermTk>=0.47.0-a.0', |
|
'appdirs', |
|
'copykitten', |
|
'pygments' |
|
] |
|
|
|
[project.urls] |
|
Homepage = "https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkode" |
|
Repository = "https://github.com/ceccopierangiolieugenio/pyTermTk.git" |
|
Issues = "https://github.com/ceccopierangiolieugenio/pyTermTk/issues" |
|
Changelog = "https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/apps/ttkode/CHANGELOG.md" |
|
|
|
[project.scripts] |
|
ttkode = "ttkode.__main__:main" |
|
|
|
[tool.setuptools] |
|
packages = [ |
|
"ttkode", "ttkode.app", |
|
"ttkode.plugins", |
|
"ttkode.plugins._010", |
|
] |
|
|
|
[tool.setuptools.dynamic] |
|
version = {attr = "ttkode.__version__"}
|
|
|