forked from someengineering/fixinventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.37 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="cloudkeeper-plugin-example_persistent",
version="0.0.2",
description="Cloudkeeper Example Persistent Plugin",
license="Apache 2.0",
packages=find_packages(),
long_description=read("README.md"),
entry_points={
"cloudkeeper.plugins": [
"example_persistent = cloudkeeper_plugin_example_persistent:ExamplePersistentPlugin"
]
},
include_package_data=True,
zip_safe=False,
install_requires=["cloudkeeper"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
# Current project status
"Development Status :: 4 - Beta",
# Audience
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
# License information
"License :: OSI Approved :: Apache Software License",
# Supported python versions
"Programming Language :: Python :: 3.8",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
# Extra metadata
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
],
keywords="cloud security",
)