-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
35 lines (33 loc) · 1.08 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
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = postgres
version = 4.0
author = Chad Whitacre et al.
author_email = chad@zetaweb.com
url = https://github.com/liberapay/postgres.py
description = postgres is a high-value abstraction over psycopg2.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
keywords = sql postgresql psycopg2
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: SQL
Topic :: Database :: Front-Ends
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
install_requires =
psycopg2-binary >= 2.8
psycopg2-pool
setup_requires =
setuptools >= 39.2.0