-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
105 lines (97 loc) · 2.08 KB
/
buildout.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[buildout]
include-site-packages = false
relative-paths = true
unzip = true
newest = false
download-cache = .cache
develop = .
parts =
[project]
name = infi.recipe.application_packager
company = Infinidat
homepage = https://github.com/Infinidat/${project:name}
namespace_packages = ['infi', 'infi.recipe']
install_requires = [
'buildout.wheel>0.1.2',
'distro',
'infi.gitpy>=1.0.6',
'infi.execute',
'infi.os_info',
'infi.recipe.buildout_logging',
'infi.recipe.close_application',
'infi.recipe.console_scripts',
'infi.registry',
'infi.traceback',
'infi.winver',
'jinja2',
'munch',
'pythonpy',
'setuptools',
'six',
'zc.buildout>=2.9.2'
]
version_file = src/infi/recipe/application_packager/__version__.py
description = buildout recipe for packaging projects as applications
long_description = buildout recipe for packaging projects are applications
console_scripts = [
]
gui_scripts = []
package_data = [
'*.bash',
'*.inc',
'changelog.in',
'control.in',
'get-pip.py',
'main.c',
'md5sums.in',
'Microsoft.VC90.CRT.manifest-x64',
'Microsoft.VC90.CRT.manifest-x86',
'msvcp100.dll',
'msvcr100.dll',
'pkginfo.in',
'postinst.in',
'postinstall.in',
'preinst.in',
'preinstall.in',
'preremove.in',
'prerm.in',
'rcedit.exe',
'rpmspec.in',
'rules.in',
'setup.py.example',
'signtool.exe',
'silent_launcher-x64.exe',
'silent_launcher-x86.exe',
'template.wxs'
]
upgrade_code = {4559a891-f1e7-11e1-a320-1093e90fe436}
product_name = Application Packager
[isolated-python]
recipe = infi.recipe.python
version = v3.8.12
[setup.py]
recipe = infi.recipe.template.version
input = setup.in
output = setup.py
[__version__.py]
recipe = infi.recipe.template.version
output = ${project:version_file}
[development-scripts]
dependent-scripts = true
recipe = infi.recipe.console_scripts
eggs = infi.traceback
${project:name}
infi.unittest
psutil
nose
coverage
ipython
infi.projector
mock
interpreter = python
[pack]
recipe = infi.recipe.application_packager
startmenu-shortcuts = ['Sample Shortcut = packager_sample']
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}