forked from Infinidat/infi.diskmanagement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
67 lines (59 loc) · 1.47 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
[buildout]
include-site-packages = false
relative-paths = true
unzip = true
newest = false
download-cache = .cache
develop = .
parts =
[project]
name = infi.diskmanagement
homepage = https://github.com/Infinidat/${project:name}
namespace_packages = ['infi']
install_requires = ['capacity',
'infi.cwrap',
'infi.devicemanager',
'infi.instruct',
'infi.pyutils',
'infi.wioctl>=0.1.3',
'infi.wmi',
'setuptools',
'waiting']
version_file = src/infi/diskmanagement/__version__.py
description = Windows Disk Management wrapping in Python
long_description = This module gives the same functionality as diskpart. But unlike diskpart, it does not use VDS, it uses SetupAPI and direct IOCTLs to the disks, volumes, and the mount and partitions managers
console_scripts = []
gui_scripts = []
package_data = []
upgrade_code = None
product_name = ${project:name}
post_install_script_name = None
pre_uninstall_script_name = None
[isolated-python]
recipe = infi.recipe.python
version = v2.7.8.11
[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
company = None
[sublime]
recipe = corneti.recipes.codeintel
eggs = ${development-scripts:eggs}