-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
77 lines (63 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[metadata]
name = jenkinsflow
url = https://github.com/lhupfeldt/jenkinsflow.git
author = Lars Hupfeldt Nielsen
author_email = [email protected]
description = Python API with high level build flow constructs (parallel/serial) for Jenkins.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries
[options]
zip_safe = True
include_package_data = True
install_requires =
# Add your dependencies here
requests>=2.20,<=3.0
atomicfile>=1.0,<=2.0
click>=7.0
tenjin>=1.1.1
# Required by the script API:
# You need to install python(3)-devel to be be able to install psutil, see INSTALL.md
psutil>=5.6.6
setproctitle>=1.1.10
# Required by the job dependency graph visualisation
bottle>=0.12.1
python_requires = >= 3.10
packages =
jenkinsflow
jenkinsflow.utils
jenkinsflow.cli
jenkinsflow.visual
# https://github.com/pypa/setuptools/issues/3340
jenkinsflow.visual.js
jenkinsflow.visual.stylesheets
package_dir =
jenkinsflow = src
jenkinsflow.utils = src/utils
jenkinsflow.cli = src/cli
jenkinsflow.visual = src/visual
jenkinsflow.visual.js = src/visual/js
jenkinsflow.visual.stylesheets = src/visual/stylesheets
[options.data_files]
src/visual = *.html
src/visual/js = *.js
src/visual/stylesheets = *.css
[options.entry_points]
console_scripts =
jenkinsflow = jenkinsflow.cli.cli:main
[options.extras_require]
dev =
nox
[aliases]
test = nox