-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·55 lines (50 loc) · 1.64 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from os import path
from setuptools import setup
from kiwi_boxed_plugin.version import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read()
config = {
'name': 'kiwi_boxed_plugin',
'long_description': long_description,
'long_description_content_type': 'text/x-rst',
'description': 'KIWI - Boxed Build Plugin',
'author': 'Marcus Schaefer',
'url': 'https://github.com/OSInside/kiwi-boxed-plugin',
'download_url':
'https://download.opensuse.org/repositories/'
'Virtualization:/Appliances:/Builder',
'author_email': '[email protected]',
'version': __version__,
'license' : 'GPLv3+',
'install_requires': [
'docopt',
'kiwi>=9.21.21',
'requests',
'PyYAML',
'cerberus',
'progressbar2'
],
'packages': ['kiwi_boxed_plugin'],
'entry_points': {
'kiwi.tasks': [
'system_boxbuild=kiwi_boxed_plugin.tasks.system_boxbuild'
]
},
'include_package_data': True,
'zip_safe': False,
'classifiers': [
# classifier: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Operating System',
]
}
setup(**config)