forked from NVlabs/DiffRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 1.27 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
# Copyright (c) 2022 NVIDIA CORPORATION. All rights reserved.
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
from setuptools import find_packages, setup
packages = find_packages(where="dflex")
packages += find_packages(exclude=["envs*", "utils*", "examples*"]) + ["dflex.envs", "dflex.utils", "dflex.examples"]
package_dir = {"": "dflex", "dflex.envs": "envs", "dflex.utils": "utils", "dflex.examples": "examples"}
setup(
name="dflex",
version="0.0.1",
author="NVIDIA",
author_email="[email protected]",
description="Differentiable Multiphysics for Python",
long_description="",
long_description_content_type="text/markdown",
packages=packages,
package_dir=package_dir,
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
install_requires=["ninja", "torch", "numpy", "urchin", "usd-core"],
)