Skip to content

Commit

Permalink
prep for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
amakelov committed Nov 17, 2024
1 parent e3787f9 commit f404c7e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,8 @@ mandala/tests/output/*
# ignore docs build
site/

# ignore PyPi build
dist/

# Ignore previous version
mandala/_prev/
2 changes: 2 additions & 0 deletions mandala/cf.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ def ops(self) -> Dict[str, Op]:
"""
res = {}
for fname, call_hids in self.fs.items():
if not call_hids:
raise NotImplementedError("TODO: handle empty function nodes")
res[fname] = self.calls[next(iter(call_hids))].op
return res

Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,25 @@
setup(
name="mandala",
version="v0.2.0-alpha",
description="",
author="Aleksandar (Alex) Makelov",
author_email="[email protected]",
description="A powerful and easy to use experiment tracking framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/amakelov/mandala",
license="Apache 2.0",
keywords="computational-experiments data-management machine-learning data-science",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
packages=packages,
long_description=open("README.md").read() if os.path.exists("README.md") else "",
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
Expand Down

0 comments on commit f404c7e

Please sign in to comment.