-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (36 loc) · 1.2 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
# coding: utf-8
# Author: Milan Kubik
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='ipaqe-dyndir',
version='0.2.1',
description='Ansible dynamic inventory for FreeIPA',
long_description=long_description,
keywords='freeipa tests ansible',
license='MIT',
author='Milan Kubik',
author_email='[email protected]',
url='https://github.com/apophys/ipaqe-dyndir',
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(exclude=['tests']),
install_requires=['PyYAML'],
entry_points={
'console_scripts': [
'ipaqe-dyndir = ipaqe_dyndir.__main__:main'
],
'org.freeipa.dyndir.plugins': [
'updates-testing = ipaqe_dyndir.builtin.repos:UpdatesTestingRepositoryPlugin',
'copr = ipaqe_dyndir.builtin.repos:COPRPlugin'
]
}
)