Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sbittrich committed Oct 20, 2023
1 parent f35981a commit 3b7fc10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion molviewspec/molviewspec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""MolViewSpec"""
__version__ = "0.0.1a0"
__version__ = "0.0.1a8"

from molviewspec.builder import Root
from molviewspec.nodes import ComponentExpression
Expand Down
4 changes: 3 additions & 1 deletion molviewspec/molviewspec/nodes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from typing import Any, Literal, Mapping, NotRequired, TypedDict, Union
from typing import Any, Literal, Mapping, Union

from typing_extensions import NotRequired, TypedDict

from .params_utils import Params

Expand Down
3 changes: 2 additions & 1 deletion molviewspec/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import re

from setuptools import setup

name = "molviewspec"
Expand Down Expand Up @@ -34,7 +35,7 @@
"scene building",
"Mol*",
],
install_requires=[],
install_requires=["typing_extensions"],
classifiers=[
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
Expand Down

0 comments on commit 3b7fc10

Please sign in to comment.