forked from mkleehammer/pyodbc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (31 loc) · 1.34 KB
/
pyproject.toml
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
[project]
name = "pyodbc"
version = "5.1.0"
requires-python = ">=3.8"
# This is used by the GitHub action that builds release artifacts using cibuildwheel.
# cibuildwheel reads this directly:
#
# https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python
description = "DB API module for ODBC"
readme = "README.md"
license = {text = "MIT-0 License"}
authors = [{name = "Michael Kleehammer", email="michael@kleehammer.com"}]
maintainers = [{name = "Michael Kleehammer", email="michael@kleehammer.com"}]
# There are a lot of contributors and I'd like to include everyone that puts in a lot of
# effort, but is this for the more technical meaning of who makes builds? Would adding
# contributors cause confusion.
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT No Attribution License (MIT-0)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
]
[project.urls]
Homepage = "https://github.com/mkleehammer/pyodbc"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"