-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removed a delegating ctor which fails on macOS gcc with error "delegating constructors are permitted only in C++11". - Add version to toml file, required by cibuildwheel (and pyproject.toml specification, I think) and have setup.py file extract it dynamically so we only have to maintain one. I need to determine if the setup keywords are even required or if it will pick up items from the toml file.
- Loading branch information
1 parent
7b270b8
commit 94f6937
Showing
4 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,38 @@ | ||
[project] | ||
name = "pyodbc" | ||
version = "5.0.0a2" | ||
|
||
requires-python = ">=3.7" | ||
# 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 License"} | ||
|
||
authors = [{name = "Michael Kleehammer", email="[email protected]"}] | ||
|
||
maintainers = [{name = "Michael Kleehammer", email="[email protected]"}] | ||
# 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 License', | ||
'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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters