-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
29 lines (28 loc) · 1.33 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
from setuptools import setup
setup(
name='jenkins-job-builder-active-choice',
version='0.0.5',
description='Jenkins Job Builder Active Choice Parameter builder',
url='https://github.com/bgaifullin/jenkins-job-builder-active-choice',
author='Bulat Gaifullin',
author_email='[email protected]',
license='MIT license',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'jenkins-job-builder<2.0.0'],
entry_points={
'jenkins_jobs.parameters': [
'cascade-choice = jenkins_jobs_active_choice.active_choice:cascade_choice_parameter',
'active-choice = jenkins_jobs_active_choice.active_choice:active_choice',
'active-choice-reactive = jenkins_jobs_active_choice.active_choice:active_choice_reactive',
'active-choice-reactive-reference = '
'jenkins_jobs_active_choice.active_choice:active_choice_reactive_reference']},
packages=['jenkins_jobs_active_choice'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'])