-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 848 Bytes
/
setup.py
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
from setuptools import setup, find_packages
from pathlib import Path
long_description = Path("README.md").read_text()
setup(
name="dawn-python",
version="0.1.6",
author="Ahmed Harmouche",
author_email="[email protected]",
description="A Python interface for the Dawn WebGPU engine.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wpmed92/pydawn",
packages=find_packages(),
platforms="macOS",
package_data={"pydawn": ["lib/libwebgpu_dawn.so", "lib/libwebgpu_dawn.dylib"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: BSD License",
],
python_requires=">=3.7",
install_requires=[],
)