forked from svdgraaf/pipeline-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
README = open('README.md').read()
except:
README = None
try:
LICENSE = open('LICENSE.txt').read()
except:
LICENSE = None
setup(
name = 'pipeline-runner',
version = '1.1.5',
description='Run your Bitbucket Pipeline in the current environment (eg: Bamboo)',
long_description=README,
author = 'Sander van de Graaf',
author_email = '[email protected]',
license = LICENSE,
url = 'http://github.com/svdgraaf/pipeline-runner/',
# packages = find_packages(),
install_requires=['PyYAML>=3.11'],
scripts=['pipeline-runner/pipeline-runner'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)