1[metadata]
2name = psycopg-c
3description = PostgreSQL database adapter for Python -- C optimisation distribution
4url = https://psycopg.org/psycopg3/
5author = Daniele Varrazzo
6author_email = daniele.varrazzo@gmail.com
7license = GNU Lesser General Public License v3 (LGPLv3)
8project_urls =
9	Homepage = https://psycopg.org/
10	Code = https://github.com/psycopg/psycopg
11	Issue Tracker = https://github.com/psycopg/psycopg/issues
12	Download = https://pypi.org/project/psycopg-c/
13classifiers =
14	Development Status :: 5 - Production/Stable
15	Intended Audience :: Developers
16	License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
17	Operating System :: MacOS :: MacOS X
18	Operating System :: Microsoft :: Windows
19	Operating System :: POSIX
20	Programming Language :: Python :: 3
21	Programming Language :: Python :: 3.6
22	Programming Language :: Python :: 3.7
23	Programming Language :: Python :: 3.8
24	Programming Language :: Python :: 3.9
25	Programming Language :: Python :: 3.10
26	Topic :: Database
27	Topic :: Database :: Front-Ends
28	Topic :: Software Development
29	Topic :: Software Development :: Libraries :: Python Modules
30long_description = file: README.rst
31long_description_content_type = text/x-rst
32license_file = LICENSE.txt
33
34[options]
35python_requires = >= 3.6
36setup_requires = Cython >= 0.29.24
37packages = find:
38zip_safe = False
39
40[options.package_data]
41psycopg_c =
42	py.typed
43	*.pyi
44	*.pxd
45	_psycopg/*.pxd
46	pq/*.pxd
47psycopg_binary =
48	py.typed
49	*.pyi
50
51[egg_info]
52tag_build =
53tag_date = 0
54
55