forked from perseas/Pyrseas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META.json
51 lines (51 loc) · 1.54 KB
/
META.json
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
{
"name": "Pyrseas",
"abstract": "Framework and utilities to upgrade and maintain databases",
"description": "Pyrseas provides a framework and utilities to upgrade and maintain a PostgreSQL database. Its utilities output a database schema in YAML format suitable for committing to a version control system and read this format to generate SQL to sync to another database.",
"version": "0.3.0",
"maintainer": "Joe Abbate <jma@freedomcircle.com>",
"license": "bsd",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "8.4.0"
}
}
},
"provides": {
"dbtoyaml": {
"file": "pyrseas/dbtoyaml.py",
"docfile": "docs/dbtoyaml.rst",
"version": "0.3.0",
"abstract": "Output PostgreSQL schemas in YAML format"
},
"yamltodb": {
"file": "pyrseas/yamltodb.py",
"docfile": "docs/yamltodb.rst",
"version": "0.3.0",
"abstract": "Generate SQL to sync a database with a YAML schema spec"
}
},
"resources": {
"homepage": "http://pyrseas.org/",
"bugtracker": {
"web": "https://github.com/jmafc/Pyrseas/issues"
},
"repository": {
"url": "git://github.com/jmafc/Pyrseas.git",
"web": "https://github.com/jmafc/Pyrseas",
"type": "git"
}
},
"generated_by": "Joe Abbate",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"version control",
"yaml",
"database version control",
"schema versioning"
]
}