-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
63 lines (57 loc) · 1.34 KB
/
setup.cfg
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
[metadata]
name = sesdev
summary = CLI tool to create and manage SES clusters for testing and development purposes
description-file =
README.md
CHANGELOG.md
home-page = https://github.com/SUSE/sesdev
requires-dist = setuptools
license = MIT License
license_file = LICENSE
classifier =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3
Topic :: System :: Clustering
Topic :: System :: Distributed Computing
Topic :: Utilities
[options]
install_requires =
Click >= 6.7
Jinja2 >= 2.10.1
PrettyTable
PyYAML >= 3.13
libvirt-python >= 5.1.0
pycryptodomex >= 3.4.6
requests
packages =
seslib
sesdev
[options.package_data]
seslib =
templates/*.j2
templates/caasp/*.j2
templates/engine/libvirt/*.j2
templates/makecheck/*.j2
templates/salt/*.j2
templates/salt/ceph-salt/*.j2
templates/salt/deepsea/*.j2
templates/salt/suma/*.j2
templates/cephadm/*.j2
templates/k3s/*.j2
[options.entry_points]
console_scripts =
sesdev = sesdev:sesdev_main
[options.extras_require]
dev =
pytest
pytest-pycodestyle
pycodestyle
pylint
tox
[pycodestyle]
max-line-length = 100