File: setup.cfg

package info (click to toggle)
aiomysql 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 912 kB
  • sloc: python: 6,894; makefile: 213
file content (59 lines) | stat: -rw-r--r-- 1,482 bytes parent folder | download
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 = aiomysql
version = attr: aiomysql.__version__
url = https://github.com/aio-libs/aiomysql
download_url = https://pypi.python.org/pypi/aiomysql
project_urls =
  CI: GitHub = https://github.com/aio-libs/aiomysql/actions
  Docs: RTD = https://aiomysql.readthedocs.io/
  GitHub: repo = https://github.com/aio-libs/aiomysql
  GitHub: issues = https://github.com/aio-libs/aiomysql/issues
  GitHub: discussions = https://github.com/aio-libs/aiomysql/discussions
description = MySQL driver for asyncio.
long_description = file: README.rst, CHANGES.txt
long_description_content_type = text/x-rst
author = Nikolay Novik
author_email = nickolainovik@gmail.com
classifiers =
  License :: OSI Approved :: MIT License
  Intended Audience :: Developers
  Programming Language :: Python :: 3
  Programming Language :: Python :: 3.7
  Programming Language :: Python :: 3.8
  Programming Language :: Python :: 3.9
  Programming Language :: Python :: 3.10
  Operating System :: POSIX
  Environment :: Web Environment
  Development Status :: 3 - Alpha
  Topic :: Database
  Topic :: Database :: Front-Ends
  Framework :: AsyncIO
license = MIT
keywords =
  mysql
  mariadb
  asyncio
  aiomysql
platforms =
  POSIX

[options]
python_requires = >=3.7
include_package_data = True

packages = find:

# runtime requirements
install_requires =
  PyMySQL>=1.0

[options.extras_require]
sa =
  sqlalchemy>=1.0,<1.4
rsa =
  PyMySQL[rsa]>=1.0

[options.packages.find]
exclude =
  tests
  tests.*