forked from piyush0101/jenkins-view-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (45 loc) · 1.29 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
53
54
55
56
57
58
59
60
61
62
PROJECT = 'jenkins-view-builder'
VERSION = '0.7.2'
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
config = {
'name': 'jenkins-view-builder',
'version': '0.7.2',
'description': 'Build jenkins views in YAML',
'author': 'Piyush Srivastava',
'author_email': '[email protected]',
'url': 'https://github.com/piyush0101/jenkins-view-builder',
'download_url': 'https://github.com/piyush0101/jenkins-view-builder/archive/0.7.2.tar.gz',
'classifiers': [],
'platforms': ['Any'],
'scripts': [],
'provides': [],
'install_requires': [
'cliff',
'PyYAML',
'argparse',
'cmd2',
'prettytable',
'pyparsing',
'six',
'stevedore',
'requests'
],
'packages': find_packages(),
'include_package_data': True,
'package_data': {'builder.converter.template': ['*.xml']},
'entry_points': {
'console_scripts': [
'jenkins-view-builder = builder.main:main',
],
'builder.commands': [
'simple = builder.commands.simple:Simple',
'update = builder.commands.update:Update',
'test = builder.commands.test:Test',
],
},
'zip_safe': False,
}
setup(**config)