-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.12 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
#!/usr/bin/env python
import os.path
import sys
from setuptools.command.test import test as TestCommand
from setuptools import setup, find_packages
setup(
name='webhook',
maintainer="Rick van den Hof",
maintainer_email='[email protected]',
url='https://github.com/exonet/ansible-tower-webhook',
description='Launch jobs in Ansible Tower when pull requests are merged.',
long_description='foo',
license='MIT',
keywords='ansible tower github webhook template job',
install_requires=[
'Flask>=0.10.1',
],
classifiers=[
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta'
],
provides=[
'webhook',
],
package_dir={
'': 'lib',
},
packages=['webhook'],
setup_requires=['setuptools_scm', 'pytest-flask'],
tests_require=['tox'],
entry_points={'console_scripts': ['webhook = webhook:main']},
)