-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1013 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
29
30
31
32
33
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
version = (this_directory / "VERSION").read_text()
setup(
name='panther_okta',
url="https://panther.com",
author="Panther Labs Inc.",
author_email="support@panther.io",
version=version,
packages=find_packages(),
python_requires=">=3.9",
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='security detection',
install_requires=[
'panther_sdk>=0.0.19',
'panther_utils>=0.2.0',
],
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Security',
'Typing :: Typed',
'Programming Language :: Python :: 3',
]
)