--global-fix

This commit is contained in:
2026-02-04 21:31:57 +01:00
commit e5591e7dc8
24 changed files with 1848 additions and 0 deletions

23
setup.py Normal file
View File

@@ -0,0 +1,23 @@
from setuptools import setup, find_packages
setup(
name="twoja-nazwa-pakietu",
version="0.1.0",
author="Twoje Imię",
author_email="twoj.email@example.com",
description="Krótki opis twojej biblioteki",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={
'my3dengine': ['sdl2.dll'],
},
include_package_data=True,
python_requires=">=3.6",
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)