@@ -26,18 +26,31 @@ def main(argv):
26
26
data = {
27
27
"name" : "PySDL3" ,
28
28
"packages" : ["sdl3" , "sdl3.bin" ],
29
- "version" : "0.4.0a3 " ,
29
+ "version" : "0.4.0a4 " ,
30
30
"description" : "A pure Python wrapper for SDL3." ,
31
31
"long_description" : open ("README.md" , "r" , encoding = "utf-8" ).read (),
32
32
"long_description_content_type" : "text/markdown" ,
33
33
"url" : "https://github.com/Aermoss/PySDL3" ,
34
+ "download_url" : "https://pypi.python.org/pypi/PySDL3" ,
34
35
"author" : "Yusuf Rençber" ,
35
36
"author_email" : "aermoss.0@gmail.com" ,
36
37
"license" : "MIT" ,
37
38
"include_package_data" : True ,
38
39
"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
+ ]
41
54
}
42
55
43
56
setuptools .setup (** data )
0 commit comments