forked from NVIDIA/warp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 920 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
import setuptools
setuptools.setup(
name="warp-lang",
version="0.5.0",
author="NVIDIA",
author_email="[email protected]",
description="A Python framework for high-performance simulation and graphics programming",
url="https://github.com/NVIDIA/warp",
project_urls={
"Documentation": "https://nvidia.github.io/warp",
},
long_description="",
long_description_content_type="text/markdown",
license="NVSCL",
packages=setuptools.find_packages(),
package_data={"": ["native/*", "native/nanovdb/*", "tests/assets/*", "bin/*", "gen/*"]},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
install_requires=["numpy"],
python_requires=">=3.7"
)