-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
30 lines (28 loc) · 897 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
27
28
29
30
from setuptools import setup
setup(
name="crosstl",
packages=[
"crosstl",
"crosstl/translator/",
"crosstl/translator/codegen/",
"crosstl/backend",
"crosstl/backend/DirectX",
"crosstl/backend/Metal/",
"crosstl/backend/Opengl/",
],
version="0.0.1.3",
author="CrossGL team",
author_email="[email protected]",
description="CrossTL: Revolutionizing Shader Development",
long_description=open("README.md", "r", -1, "UTF8").read(),
long_description_content_type="text/markdown",
url="https://crossgl.net/",
project_urls={"Documentation": "https://crossgl.github.io/index.html"},
include_package_dats=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=["gast", "pytest"],
)