-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
71 lines (62 loc) · 1.66 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
[metadata]
name = pgdumplib
version = attr: pgdumplib.version
description = Python3 library for working with pg_dump files
long_description = file: README.rst
license = BSD 3-Clause License
url = https://github.com/gmr/pgdumplib
author = Gavin M. Roy
author_email = gavinmroy@gmail.com
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
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.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: SQL
Topic :: Database
Topic :: Database :: Database Engines/Servers
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data = True
install_requires =
pendulum
toposort
packages = pgdumplib
zip_safe = True
[options.package_data]
* = LICENSE, README.rst
[build_sphinx]
all-files = 1
[coverage:run]
branch = True
data_file = build/.coverage
[flake8]
application-import-names = pgdumplib
exclude = build,ci,env
ignore = RST304, C416
import-order-style = google
[mypy]
ignore_errors = True
[mypy-arrow]
ignore_missing_imports = True
[mypy-pgdumplib]
ignore_errors = True
[nosetests]
cover-branches = 1
cover-html = true
cover-html-dir = build/coverage
cover-package = pgdumplib
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