-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 714 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 714 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
import os
from setuptools import setup
about = {}
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'gwh', '__version__.py'), encoding='utf-8') as f:
exec(f.read(), about)
setup(
name=about['__package__'],
version=about['__version__'],
author='Andy Hebrank',
author_email='ahebrank@gmail.com',
packages=['gwh'],
url='https://github.com/ahebrank/gitlab-webhook-handler',
description='Webhook Handler for GitLab',
license='Apache License, Version 2.0',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=[
'Flask>=1.0',
'requests>=2.19.0'
]
)