forked from PyMySQL/PyMySQL
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1 KB
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
[build-system]
requires = ["setuptools>=61.0", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "CyMySQL"
description = "Python MySQL Driver using Cython"
readme = "README.rst"
keywords = ["MySQL"]
authors = [
{ name = "Yutaka Matsubara", email = "yutaka.matsubara@gmail.com" }
]
maintainers = [
{ name = "Hajime Nakagami", email = "nakagami@gmail.com" }
]
dependencies = ["pycryptodome"]
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dynamic = ["version"]
[project.optional-dependencies]
"zstd" = ["pyzstd"]
"vector" = ["numpy"]
[project.urls]
"Project" = "https://github.com/nakagami/CyMySQL/"
[tool.setuptools.dynamic]
version = {attr = "cymysql.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["cymysql*"]