-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuildout.cfg
59 lines (51 loc) · 1.19 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
[buildout]
prefer-final = false
newest = false
extensions = buildout.wheel
download-cache = .cache
develop = .
parts =
[project]
name = date-detector
company = Infinidat
namespace_packages = []
install_requires = [
'setuptools',
]
version_file = src/date_detector/__version__.py
description = A Python module for scanning text and extracting dates from it
long_description = A Python module for scanning text and extracting dates from it
console_scripts = []
gui_scripts = []
package_data = [
'**/*.txt'
]
upgrade_code = {f4225fe2-e929-11e7-990f-448500edd465}
product_name = date-detector
post_install_script_name = None
pre_uninstall_script_name = None
[isolated-python]
recipe = infi.recipe.python
version = v2.7.12.4
[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 = ${project:name}
ipython
nose
infi.unittest
infi.traceback
zc.buildout
interpreter = python
[pack]
recipe = infi.recipe.application_packager
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}