-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
27 lines (18 loc) · 844 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
import pathlib
from setuptools import setup
CWD = pathlib.Path(__file__).absolute().parent
def get_version():
"""Gets the mo-gymnasium version."""
path = CWD / "momaland" / "__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="momaland", version=get_version(), 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