-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.95 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.95 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
46
47
48
49
50
51
52
#!/usr/bin/env python
"""Python Module setup script."""
"""Ref: https://docs.python.org/3/distutils/setupscript.html."""
import setuptools # noqa: E402
with open("README.rst", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name='ansible-filters-ldif',
version='0.0.11',
description='Ansible filter to read or write LDIF.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author='Valdemar Lemche',
author_email='valdmar@lemche.net',
url='https://github.com/atterdag/ansible-filters-ldif',
packages=[],
license='GPLv3+',
project_urls={
'Bug Tracker': 'https://github.com/atterdag/ansible-filters-ldif/issues', # noqa: E501
'Documentation': 'https://github.com/atterdag/ansible-filters-ldif/blob/master/README.rst', # noqa: E501
'Source Code': 'https://github.com/atterdag/ansible-filters-ldif', # noqa: E501
},
py_modules=[
"ansible/plugins/filter/ldif",
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', # noqa: E501
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
install_requires=[
'ansible>=2.5.0',
'python-ldap',
],
)