forked from peterpakos/checkipaconsistency
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
39 lines (35 loc) · 1.08 KB
/
setup.cfg
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
[metadata]
name = checkipaconsistency
description = Tool to check consistency across FreeIPA servers
long_description = file: README.rst
license = GPLv3
author = Peter Pakos
author-email = [email protected]
url = https://github.com/peterpakos/checkipaconsistency
keywords = freeipa ipa ldap consistency cipa
classifiers =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
[options]
include_package_data = True
packages = checkipaconsistency
install_requires =
dnspython
prettytable
python-ldap
pyyaml
[options.entry_points]
console_scripts =
cipa = checkipaconsistency.main:main
[bdist_wheel]
universal = 1
[aliases]
package = clean --all egg_info bdist_wheel sdist
release = package upload
testrelease = package upload -r testpypi