-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathsetup.py
32 lines (23 loc) · 967 Bytes
/
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
import pathlib
from setuptools import setup
CWD = pathlib.Path(__file__).absolute().parent
def get_version():
"""Gets the mo-gymnasium version."""
path = CWD / "morl_baselines" / "__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="morl-baselines",
version=get_version(),
description="Implementations of multi-objective reinforcement learning (MORL) algorithms.",
long_description=open("README.md").read(),
)
# python setup.py sdist
# python setup.py bdist_wheel
# twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# twine upload dist/*
# https://towardsdatascience.com/create-your-own-python-package-and-publish-it-into-pypi-9306a29bc116