-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
75 lines (67 loc) · 1.78 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
[buildout]
include-site-packages = false
relative-paths = true
unzip = true
newest = false
download-cache = .cache
develop = .
parts =
[project]
name = infi.pypi_manager
homepage = https://github.com/Infinidat/${project:name}
company = Infinidat
namespace_packages = ['infi']
install_requires = [
'docopt',
'infi.execute',
'infi.pyutils',
'PrettyTable',
'requests',
'setuptools',
'six'
]
version_file = src/infi/pypi_manager/__version__.py
description = mirror distributions from pypi.python.org to our local djangopypi server
long_description = Clients for pypi.python.org and djangopypi server used to compare, install, query and mirror python packages
console_scripts = [
'compare_pypi_repos = infi.pypi_manager.scripts.compare_pypi_repos:main',
'hard_install = infi.pypi_manager.scripts.hard_install:main',
'mirror_package = infi.pypi_manager.mirror.mirror_package:mirror_package',
'pydepends = infi.pypi_manager.depends.dependencies:main',
'rebuild_package = infi.pypi_manager.mirror.rebuild_package:rebuild_package'
]
gui_scripts = []
package_data = [
'skipped_packages.txt'
]
upgrade_code = {fc46e14f-70d2-11e1-a53f-1093e90fe436}
product_name = ${project:name}
post_install_script_name = None
pre_uninstall_script_name = None
[isolated-python]
recipe = infi.recipe.python
version = v3.8.0.3
[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
mock
coverage
pylint
infi.unittest
infi.traceback
interpreter = python
[pack]
recipe = infi.recipe.application_packager
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}