-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
79 lines (73 loc) · 1.94 KB
/
setup.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
75
76
77
78
79
[metadata]
name = pglifecycle
version = attr: pglifecycle.version
description = A PostgreSQL schema management tool
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = BSD 3-Clause License
license-file = LICENSE
home-page = https://github.com/gmr/pglifecycle
project_urls =
Bug Tracker = https://github.com/gmr/pglifecycle/issues
Documentation = https://pglifecycle.readthedocs.io
Source Code = https://github.com/gmr/pglifecycle/
author = Gavin M. Roy
author_email = gavinmroy@gmail.com
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: SQL
Topic :: Database
Topic :: System :: Systems Administration
Topic :: Software Development
requires-dist = setuptools
keywords =
postgresql
ddl
sql
schema
[options]
include_package_data = True
install_requires =
arrow
jsonschema>=3.1.1,<4
pgdumplib>=2,<3
pgparse
ruamel.yaml
stringcase
toposort
packages = pglifecycle
zip_safe = false
[build_sphinx]
all-files = 1
[coverage:run]
branch = True
data_file = build/.coverage
[flake8]
application-import-names = pglifecycle
exclude = bak,build,env
ignore = Q440,Q441,RST304,W503
import-order-style = google
[mypy-arrow]
ignore_missing_imports = True
[nosetests]
cover-branches = 1
cover-html = true
cover-html-dir = build/coverage
cover-package = pglifecycle
cover-xml = true
cover-xml-file = build/coverage.xml
logging-level = DEBUG
verbosity = 2
with-coverage = 1
with-xunit = true
xunit-file = build/nosetests.xml