-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import os | ||
from pathlib import Path | ||
from setuptools import setup, find_packages | ||
|
||
# This is for standalone (non-ROS) use. | ||
|
@@ -32,11 +33,13 @@ def get_files_in_folder(directory): | |
|
||
setup( | ||
name=project_name, | ||
version="1.0.0", | ||
version="1.1.0", | ||
url="https://github.com/sea-bass/pyrobosim", | ||
author="Sebastian Castro", | ||
author_email="[email protected]", | ||
description="ROS 2 enabled 2D mobile robot simulator for behavior prototyping.", | ||
long_description=(Path(__file__).parent / "README.md").read_text(), | ||
long_description_content_type="text/markdown", | ||
license="MIT", | ||
install_requires=install_requires, | ||
packages=find_packages(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>pyrobosim_msgs</name> | ||
<version>1.0.0</version> | ||
<version>1.1.0</version> | ||
<description>Message definitions for pyrobosim package.</description> | ||
<maintainer email="[email protected]">Sebastian Castro</maintainer> | ||
<license>MIT</license> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>pyrobosim_ros</name> | ||
<version>1.0.0</version> | ||
<version>1.1.0</version> | ||
<description>ROS 2 wrapper around pyrobosim.</description> | ||
<maintainer email="[email protected]">Sebastian Castro</maintainer> | ||
<license>MIT</license> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
setup( | ||
name=project_name, | ||
version="1.0.0", | ||
version="1.1.0", | ||
url="https://github.com/sea-bass/pyrobosim", | ||
author="Sebastian Castro", | ||
author_email="[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters