-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 859 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 859 Bytes
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
#
# Copyright (c) 2023, Takahiro Miki. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for details.
#
from setuptools import setup, find_packages
setup(
name="terrain_generator",
version="0.1",
packages=find_packages(),
install_requires=[
"numpy>=1.19.5",
"matplotlib>=3.3.3",
"open3d",
"networkx",
"trimesh",
"torch",
"alive-progress",
"ray",
],
entry_points={
"console_scripts": [
"terrain-generator=terrain_generator.cli:main",
],
},
package_data={"terrain_generator": ["*.py"]},
description="A Python library for generating terrain meshes",
author="Takahiro Miki",
author_email="takahiro.miki1992@gmail.com",
url="https://github.com/leggedrobotics/terrain_generator",
)