|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=45", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | + requires = ["setuptools>=45", "wheel"] |
| 3 | + build-backend = "setuptools.build_meta" |
4 | 4 |
|
5 | 5 | [project] |
6 | | -name = "ttkode" |
7 | | -dynamic = ["version"] |
8 | | -readme = {file = "README.md", content-type = "text/markdown"} |
9 | | -authors = [ |
10 | | - {name = "Eugenio Parodi", email = "ceccopierangiolieugenio@googlemail.com"}, |
11 | | -] |
12 | | -description = "Terminal ToolKit Studio Code editor" |
13 | | -requires-python = ">=3.9" |
14 | | -license = {text = "MIT"} |
15 | | -classifiers = [ |
16 | | - "Programming Language :: Python :: 3", |
17 | | - "License :: OSI Approved :: MIT License", |
18 | | - "Operating System :: OS Independent", |
19 | | - "Development Status :: 3 - Alpha", |
20 | | - "Environment :: Console", |
21 | | - "Intended Audience :: Developers", |
22 | | - "Intended Audience :: Information Technology", |
23 | | - "Topic :: Terminals", |
24 | | - "Topic :: Software Development :: User Interfaces", |
25 | | -] |
26 | | -dependencies = [ |
27 | | - 'pyTermTk>=0.48.1-a0', |
28 | | - 'pytest', |
29 | | - 'appdirs', |
30 | | - 'copykitten', |
31 | | - 'pygments' |
32 | | -] |
| 6 | + name = "ttkode" |
| 7 | + dynamic = ["version"] |
| 8 | + readme = {file = "README.md", content-type = "text/markdown"} |
| 9 | + authors = [ |
| 10 | + {name = "Eugenio Parodi", email = "ceccopierangiolieugenio@googlemail.com"}, |
| 11 | + ] |
| 12 | + description = "Terminal ToolKit Studio Code editor" |
| 13 | + requires-python = ">=3.9" |
| 14 | + license = {text = "MIT"} |
| 15 | + classifiers = [ |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Development Status :: 3 - Alpha", |
| 20 | + "Environment :: Console", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Intended Audience :: Information Technology", |
| 23 | + "Topic :: Terminals", |
| 24 | + "Topic :: Software Development :: User Interfaces", |
| 25 | + ] |
| 26 | + dependencies = [ |
| 27 | + 'pyTermTk>=0.48.1-a0', |
| 28 | + 'pytest', |
| 29 | + 'appdirs', |
| 30 | + 'copykitten', |
| 31 | + 'pygments' |
| 32 | + ] |
| 33 | + |
| 34 | +[project.optional-dependencies] |
| 35 | + test = [ |
| 36 | + "pytest>=8.3.4", |
| 37 | + "mypy>=1.15.0" |
| 38 | + ] |
33 | 39 |
|
34 | 40 | [project.urls] |
35 | | -Homepage = "https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkode" |
36 | | -Repository = "https://github.com/ceccopierangiolieugenio/pyTermTk.git" |
37 | | -Issues = "https://github.com/ceccopierangiolieugenio/pyTermTk/issues" |
38 | | -Changelog = "https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/apps/ttkode/CHANGELOG.md" |
| 41 | + Homepage = "https://github.com/ceccopierangiolieugenio/pyTermTk/tree/main/apps/ttkode" |
| 42 | + Repository = "https://github.com/ceccopierangiolieugenio/pyTermTk.git" |
| 43 | + Issues = "https://github.com/ceccopierangiolieugenio/pyTermTk/issues" |
| 44 | + Changelog = "https://github.com/ceccopierangiolieugenio/pyTermTk/blob/main/apps/ttkode/CHANGELOG.md" |
39 | 45 |
|
40 | 46 | [project.scripts] |
41 | | -ttkode = "ttkode.__main__:main" |
| 47 | + ttkode = "ttkode.__main__:main" |
42 | 48 |
|
43 | 49 | [tool.setuptools] |
44 | | -packages = [ |
45 | | - "ttkode", "ttkode.app", |
46 | | - "ttkode.plugins", |
47 | | - "ttkode.plugins._010", |
48 | | - ] |
| 50 | + packages = [ |
| 51 | + "ttkode", "ttkode.app", |
| 52 | + "ttkode.plugins", |
| 53 | + "ttkode.plugins._010", |
| 54 | + "ttkode.plugins._030", |
| 55 | + ] |
49 | 56 |
|
50 | 57 | [tool.setuptools.dynamic] |
51 | | -version = {attr = "ttkode.__version__"} |
| 58 | + version = {attr = "ttkode.__version__"} |
0 commit comments