-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 922 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
28
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
VERSION = "0.0.3"
setup(
name="panther_community_detections",
version=VERSION,
packages=["panther_community_detections"],
package_data={"panther_community_detections": ["py.typed"]},
license="AGPL-3.0",
description="",
author="Panther Labs Inc",
author_email="[email protected]",
url="https://github.com/panther-labs/panther-community-detections",
download_url=f"https://github.com/panther-labs/panther-community-detections/archive/v{VERSION}.tar.gz",
keywords=["Security", "Python"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.9",
],
include_package_data=True,
)