Skip to content

Commit 7c18cb0

Browse files
committed
Added classifiers.
1 parent 20e903d commit 7c18cb0

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

setup.py

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,31 @@ def main(argv):
2626
data = {
2727
"name": "PySDL3",
2828
"packages": ["sdl3", "sdl3.bin"],
29-
"version": "0.4.0a3",
29+
"version": "0.4.0a4",
3030
"description": "A pure Python wrapper for SDL3.",
3131
"long_description": open("README.md", "r", encoding = "utf-8").read(),
3232
"long_description_content_type": "text/markdown",
3333
"url": "https://github.com/Aermoss/PySDL3",
34+
"download_url": "https://pypi.python.org/pypi/PySDL3",
3435
"author": "Yusuf Rençber",
3536
"author_email": "aermoss.0@gmail.com",
3637
"license": "MIT",
3738
"include_package_data": True,
3839
"install_requires": [],
39-
"python_requires": ">=3.9",
40-
"cmdclass": {"install": CustomInstall}
40+
"cmdclass": {"install": CustomInstall},
41+
"classifiers": [
42+
"Development Status :: 3 - Alpha",
43+
"Intended Audience :: Developers",
44+
"License :: OSI Approved :: MIT License",
45+
"Operating System :: Microsoft :: Windows",
46+
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3.11",
49+
"Programming Language :: Python :: 3.12",
50+
"Programming Language :: Python :: 3.13",
51+
"Programming Language :: Python :: 3.14",
52+
"Topic :: Software Development :: Libraries :: Python Modules"
53+
]
4154
}
4255

4356
setuptools.setup(**data)

0 commit comments

Comments
 (0)