-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up setup.py() and set version in pyproject.toml (#417)
- Loading branch information
1 parent
fa575a9
commit cd7bb57
Showing
4 changed files
with
2 additions
and
25 deletions.
There are no files selected for viewing
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
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
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
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,21 +1,5 @@ | ||
"""Sets up the project.""" | ||
|
||
# import pathlib | ||
|
||
from setuptools import setup | ||
|
||
# CWD = pathlib.Path(__file__).absolute().parent | ||
# | ||
# | ||
# def get_version(): | ||
# """Gets the metaworld version.""" | ||
# path = CWD / "metaworld" / "__init__.py" | ||
# content = path.read_text() | ||
# | ||
# for line in content.splitlines(): | ||
# if line.startswith("__version__"): | ||
# return line.strip().split()[-1].strip().strip('"') | ||
# raise RuntimeError("bad version data in __init__.py") | ||
|
||
|
||
setup(name="metaworld", version="2.0.0") | ||
setup() |