Python: Some pre for PyPI uploads

- Add classifiers and other meta-data
- Add alpha suffix for version (to be kept until removed manually)
This commit is contained in:
Simon Hausmann 2024-04-16 17:44:37 +02:00
parent 20431b41bb
commit e4017a3e41
2 changed files with 25 additions and 2 deletions

View file

@ -7,13 +7,36 @@ build-backend = "maturin"
[project]
name = "slint"
version = "1.6.0"
version = "1.6.0a1"
authors = [
{name = "Slint Team", email = "info@slint.dev"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: Other/Proprietary License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Widget Sets",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://slint.dev"
Documentation = "https://slint.dev/docs"
Repository = "https://github.com/slint-ui/slint"
Changelog = "https://github.com/slint-ui/slint/blob/master/CHANGELOG.md"
Tracker = "https://github.com/slint-ui/slint/issues"
[project.optional-dependencies]
dev = ["pytest"]