Skip to content

Commit

Permalink
Merge pull request #2 from yeti-switch/fix-package
Browse files Browse the repository at this point in the history
fix package
  • Loading branch information
dmitry-sinina authored Aug 27, 2023
2 parents 3e5df7b + 38cecb4 commit 2faf049
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
from packaging.version import Version
import os

Expand All @@ -24,7 +24,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=["yeti_switch_api"],
packages=find_packages(exclude=["examples"]),
python_requires=">=3.7",
install_requires=requirements,
keywords=["yeti-switch", "yeti-web"],
Expand Down
5 changes: 3 additions & 2 deletions yeti_switch_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__version_info__ = ("0", "2", "0")
__version__ = ".".join(__version_info__)
from . import api, common, orm

__all__ = ["api", "common", "orm"]

0 comments on commit 2faf049

Please sign in to comment.