-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
81 lines (72 loc) · 2.07 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
[buildout]
include-site-packages = false
relative-paths = true
unzip = true
newest = false
download-cache = .cache
develop = .
parts =
[project]
name = infi.recipe.console_scripts
homepage = https://github.com/Infinidat/${project:name}
namespace_packages = ['infi', 'infi.recipe']
install_requires = [
'setuptools>=32.0',
'zc.buildout'
]
version_file = src/infi/recipe/console_scripts/__version__.py
description = buildout recipe for generating better console and gui script for entry points
long_description = buildout recipe for generating better console and gui script for entry points
console_scripts = ['console-script-test = infi.recipe.console_scripts:nothing', 'replace_gui_script = infi.recipe.console_scripts.windows:replace_gui_script', 'replace_console_script = infi.recipe.console_scripts.windows:replace_console_script']
gui_scripts = ['gui-script-test = infi.recipe.console_scripts:nothing']
package_data = [
'embed-gui-x64.exe',
'embed-gui-x86.exe',
'embed-x64.exe',
'embed-x86.exe',
'embed3-gui-x64.exe',
'embed3-gui-x86.exe',
'embed3-x64.exe',
'embed3-x86.exe',
'Microsoft.VC90.CRT.manifest-x64',
'Microsoft.VC90.CRT.manifest-x86',
'msvcm90.dll-x64',
'msvcm90.dll-x86',
'msvcp90.dll-x64',
'msvcp90.dll-x86',
'msvcr90.dll-x64',
'msvcr90.dll-x86'
]
upgrade_code = 65e3bbb5-41db-11e1-9f72-109add428c49
product_name = ${project:name}
post_install_script_name = None
pre_uninstall_script_name = None
[isolated-python]
recipe = infi.recipe.python
version = v3.8.0.2
[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]
recipe = infi.recipe.console_scripts
eggs = ${project:name}
ipython
nose
scripts = console-script-test
ipython
nosetests
interpreter = python
[development-gui-scripts]
recipe = infi.recipe.console_scripts:gui_scripts
eggs = ${project:name}
scripts = gui-script-test
[pack]
recipe = infi.recipe.application_packager
company = None
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}