-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·65 lines (59 loc) · 2.01 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
63
64
65
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
from os import path
from setuptools import setup
__version__ = '1.0.7'
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as readme:
long_description = readme.read()
config = {
'name': 'cloud_builder',
'long_description': long_description,
'long_description_content_type': 'text/x-rst',
'python_requires': '>=3.6',
'description': 'Cloud Builder',
'author': 'Marcus Schaefer',
'author_email': 'marcus.schaefer@gmail.com',
'version': __version__,
'license' : 'GPLv3+',
'install_requires': [
'docopt>=0.6.2',
'PyYAML',
'apscheduler',
'kiwi>=9.21.21',
'kafka-python',
'cerberus',
'requests',
'psutil',
'paramiko'
],
'packages': ['cloud_builder'],
'entry_points': {
'console_scripts': [
'cb-ctl=cloud_builder.cb_ctl:main',
'cb-info=cloud_builder.cb_info:main',
'cb-run=cloud_builder.cb_run:main',
'cb-prepare=cloud_builder.cb_prepare:main',
'cb-fetch=cloud_builder.cb_fetch:main',
'cb-scheduler=cloud_builder.cb_scheduler:main',
'cb-collect=cloud_builder.cb_collect:main',
'cb-image=cloud_builder.cb_image:main',
'ssh_kafka_read=cloud_builder.broker.ssh_kafka.ssh_kafka_read:main',
'ssh_kafka_write=cloud_builder.broker.ssh_kafka.ssh_kafka_write:main'
]
},
'include_package_data': True,
'zip_safe': False,
'classifiers': [
# classifier: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 1 - Planning',
'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)