-
Notifications
You must be signed in to change notification settings - Fork 9
/
buildout.cfg
54 lines (46 loc) · 1.22 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
[buildout]
newest = false
download-cache = .cache
develop = .
parts =
[project]
name = infi.docopt_completion
homepage = https://github.com/Infinidat/${project:name}
namespace_packages = ['infi']
install_requires = ['docopt',
'setuptools']
version_file = src/infi/docopt_completion/__version__.py
description = docopt completion tool
long_description = a tool that creates shell tab-completion for docopt scripts
console_scripts = ['docopt-completion = infi.docopt_completion.docopt_completion:main']
gui_scripts = []
package_data = []
upgrade_code = {42e85a30-3978-11e2-ae16-705681bae3b9}
product_name = infi.docopt_completion
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]
dependent-scripts = true
recipe = infi.recipe.console_scripts
eggs = ipython
infi.traceback
${project:name}
coverage
nose
interpreter = python
[pack]
recipe = infi.recipe.application_packager
company = None
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}