Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
typing required in setup; init required to import (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrichie5 authored Jan 23, 2023
1 parent 7a4407b commit 3c10ec3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
File renamed without changes.
Empty file.
Empty file.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
from pathlib import Path

from setuptools import find_packages, setup
from setuptools import setup

this_directory = Path(__file__).parent
VERSION = "0.0.5"
VERSION = "0.0.6"

setup(
name="panther_detections",
version=VERSION,
packages=find_packages(),
packages=["panther_detections"],
package_data={"panther_detections": ["py.typed"]},
license="AGPL-3.0",
description="",
author="Panther Labs Inc",
Expand Down

0 comments on commit 3c10ec3

Please sign in to comment.