-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
24 lines (23 loc) · 881 Bytes
/
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
from setuptools import setup
setup(
name='jenkins-jobs-slack',
version='0.3.3',
description='Jenkins Job Builder Slack Notifier',
url='https://github.com/asmundg/jenkins-jobs-slack',
author='Aasmund Grammeltvedt',
author_email='[email protected]',
license='MIT license',
install_requires=[],
entry_points={
'jenkins_jobs.publishers': [
'slack = jenkins_jobs_slack.slack:slack_publisher']},
packages=['jenkins_jobs_slack'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'])