-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 940 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
from setuptools import setup, find_packages
# Read README.md for long description if available
long_description = ""
if os.path.exists("README.md"):
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="py3dgame",
version="0.2.0",
author="PythonCoders45",
description="A high-performance 3D engine with Jolt Physics, NavMesh AI, and QUIC Networking.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PythonCoders45/py3dgame",
packages=find_packages(),
include_package_data=True,
package_data={
"": ["*.so", "*.dll", "*.dylib"],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.8",
)