-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.47 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.47 KB
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
from setuptools import setup, find_packages
VERSION = '0.0.16'
DESCRIPTION = 'OpenLDAP OpenCensus Statistics'
LONG_DESCRIPTION = 'A package to gather statistics for OpenLDAP and publish via OpenCensus.'
setup(
name="openldap-opencensus-stats",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Mark Donnelly",
author_email="mark@painless-security.com",
license='AGPL 3.0',
packages=find_packages(),
install_requires=[
'grpcio==1.47.0',
'opencensus-ext-stackdriver==0.8.0',
'opencensus-ext-prometheus',
'opencensus==0.10.0',
'python-ldap',
'pyyaml',
],
keywords='openldap opencensus metrics',
entry_points={
'console_scripts': [
'openldap_opencensus_stats = openldap_opencensus_stats.main:monitor'
]
},
data_files=[
('etc', ['openldap-opencensus-stats.template.yml']),
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
]
)