|
1 | 1 | [project] |
2 | 2 | name = "mxmake" |
3 | 3 | description = "Generates a Python project-specific Makefile by using an extensible library of configurable Makefile snippets." |
4 | | -version = "1.0a9.dev0" |
| 4 | +version = "1.1.0.dev0" |
5 | 5 | keywords = ["development", "deployment", "make"] |
6 | 6 | authors = [ |
7 | 7 | { name = "MX Stack Developers", email = "[email protected]" } |
8 | 8 | ] |
9 | 9 | requires-python = ">=3.9" |
10 | 10 | license = { text = "BSD 2-Clause License" } |
11 | 11 | classifiers = [ |
12 | | - "Development Status :: 3 - Alpha", |
| 12 | + "Development Status :: 5 - Production/Stable", |
13 | 13 | "Intended Audience :: Developers", |
14 | 14 | "Topic :: Software Development :: Build Tools", |
15 | 15 | "License :: OSI Approved :: BSD License", |
16 | 16 | "Operating System :: OS Independent", |
17 | 17 | "Programming Language :: Python", |
18 | | - "Programming Language :: Python :: 3.8", |
19 | 18 | "Programming Language :: Python :: 3.9", |
20 | 19 | "Programming Language :: Python :: 3.10", |
21 | 20 | "Programming Language :: Python :: 3.11", |
22 | 21 | "Programming Language :: Python :: 3.12", |
| 22 | + "Programming Language :: Python :: 3.13", |
23 | 23 | ] |
24 | 24 | dependencies = [ |
25 | 25 | "inquirer", |
@@ -85,11 +85,8 @@ lines_after_imports = 2 |
85 | 85 |
|
86 | 86 | [tool.mypy] |
87 | 87 | ignore_missing_imports = true |
88 | | -python_version = "3.8" |
89 | | -exclude = "src/mxmake/templates/plone-site.py" |
| 88 | +python_version = "3.9" |
90 | 89 |
|
91 | 90 | [tool.ruff] |
92 | 91 | # Exclude a variety of commonly ignored directories. |
93 | | -exclude = [ |
94 | | - "src/mxmake/templates/plone-site.py", |
95 | | -] |
| 92 | +exclude = [] |
0 commit comments