-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
59 lines (55 loc) · 1.51 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
[metadata]
name = pgtricks
version = attr: pgtricks.version.__version__
author = Antti Kaihola
author_email = [email protected]
license = BSD
license_file = LICENSE
description = PostgreSQL utilities
long_description = file:README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Database
Topic :: System :: Archiving :: Backup
keywords =
database
postgresql
backup
git
project_urls =
Source Code = https://github.com/akaihola/pgtricks
Change Log = https://github.com/akaihola/pgtricks/CHANGES.rst
url = https://github.com/akaihola/pgtricks
[options]
packages =
pgtricks
python_requires = >=3.7
[options.entry_points]
console_scripts =
pg_dump_splitsort = pgtricks.pg_dump_splitsort:main
pg_split_schema_dump = pgtricks.pg_split_schema_dump:main
pg_incremental_backup = pgtricks.pg_incremental_backup:main
[options.extras_require]
test =
darker[isort]
flake8
mypy
pylint
pytest
pytest-mypy
release =
darkgray-dev-tools~=0.0.2
[flake8]
max-line-length = 88
extend-ignore = E203