forked from ESSS/jobs_done10
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
from __future__ import unicode_literals
from setuptools import find_packages, setup
setup(
name='jobs_done10',
version='1.0',
provides=['jobs_done10'],
#===============================================================================================
# Requirements
#===============================================================================================
install_requires=[
'python-jenkins',
'pyyaml',
# 'ben10' Not released yet
],
#===============================================================================================
# Packaging
#===============================================================================================
scripts=['scripts/jobs_done.py'],
packages=find_packages('source/python'),
package_dir={
'' : 'source/python',
},
include_package_data=True,
#===============================================================================================
# Project description
#===============================================================================================
author='Diogo de Campos, Alexandre Motta de Andrade',
author_email='[email protected], [email protected]',
url='https://github.com/ESSS/jobs_done10',
license='LGPL v3+',
description=\
"Job's Done is a tool heavily inspired by Travis, where you can configure a file "
"(.jobs_done.yaml) in your repository to create Continuous Integration jobs. "
"Unlike Travis, jobs_done focuses on creating jobs in known CI servers instead of running "
"in anonymous servers over the cloud. Currently only supports Jenkins",
keywords='jenkins continuous integration ci jobs job build',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
)