-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 1.01 KB
/
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
27
28
29
30
31
32
33
34
from setuptools import find_packages, setup
NAME = "shadertoy"
SUMMARY = "shadertoy"
VERSION = "0.0.1"
runtime_deps = ["wgpu>=0.19.0,<0.20.0"]
setup(
name=NAME,
version=VERSION,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Visualization"
],
packages=find_packages(
include=["shadertoy", 'shadertoy.*'], exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
python_requires=">=3.9.0",
install_requires=runtime_deps,
license="MIT",
description=SUMMARY,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Pan Xinmiao",
author_email="[email protected]",
url="https://github.com/panxinmiao/shadertoy",
data_files=[("", ["LICENSE"])]
)