Skip to content

Commit

Permalink
Adds long description for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
semitable committed Sep 11, 2021
1 parent 0e55355 commit 4c411fb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent

# The text of the README file
README = (HERE / "README.md").read_text()

setup(
name="rware",
version="1.0.0",
version="1.0.1",
description="Multi-Robot Warehouse environment for reinforcement learning",
long_description=README,
long_description_content_type="text/markdown",
author="Filippos Christianos",
url="https://github.com/semitable/robotic-warehouse",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
Expand Down

0 comments on commit 4c411fb

Please sign in to comment.