-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 679 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 679 Bytes
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
from setuptools import setup
setup(
name='gh-hooks-server',
version='1.1.0',
description='GitHub Webhook Server',
author='Alexandre Cunha',
author_email='alexandre.cunha@gmail.com',
license='MIT',
packages=[
'ghhooks',
],
install_requires=[
'tornado>=4.3',
],
entry_points={
'console_scripts': [
'ghhooks = ghhooks.server:main',
]
},
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
url='https://github.com/alercunha/gh-hooks-server',
)