-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (35 loc) · 1.23 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
39
40
41
42
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# pip install -e ./ # requires the following
# pip install setuptools wheel
requirements = '''
future
requests
six
'''.split('\n')
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup( name='gitlab-job-guard',
version='v0.0.1',
description="Guard gitlab jobs from multiple simultaneous executions",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://gitlab.com/s.bhooshi/gitlab-job-guard',
author='Shalom Bhooshi',
author_email='[email protected]',
license='Apache License 2.0',
packages=['gitlab-job-guard'],
zip_safe=False,
scripts=[
'gitlab-job-guard/gitlab-job-guard.py',
'gitlab-job-guard/gitlab-job-guard'
],
install_requires=requirements,
keywords='gitlab-ci pipeline job guard',
python_requires='>=2.7, >=2.7.1, !=3.0, !=3.0.*, !=3.1, !=3.1.*, !=3.2, !=3.2.*, !=3.3, !=3.3.*, !=3.4, !=3.4.*',
)