6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 21:43:06 +01:00
firebird-qa/setup.cfg

61 lines
1.6 KiB
INI
Raw Normal View History

2021-04-26 20:02:48 +02:00
[build_sphinx]
source-dir=docs
all-files=True
[metadata]
2021-12-22 20:20:44 +01:00
name = firebird-qa
version = 0.12.0
2021-04-26 20:02:48 +02:00
description = pytest plugin for Firebird QA
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
author = Pavel Císař
author_email = pcisar@users.sourceforge.net
license = MIT
2021-04-27 17:48:17 +02:00
license_files = LICENSE
2021-04-26 20:02:48 +02:00
url = https://github.com/FirebirdSQL/fbtest
keywords = Firebird RDBMS QA tools
project_urls =
Documentation = https://firebird-qa.rtfd.io
Bug Reports = https://github.com/FirebirdSQL/firebird-qa/issues
Funding = https://www.firebirdsql.org/en/donate/
Source = https://github.com/FirebirdSQL/firebird-qa
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Topic :: Software Development :: Testing
Topic :: Database
Framework :: Pytest
[options]
zip_safe = True
python_requires = >=3.8, <4
install_requires =
2021-10-21 19:28:33 +02:00
firebird-base>=1.3.0
2021-12-22 20:20:44 +01:00
firebird-driver>=1.4.1
2021-10-21 19:28:33 +02:00
pytest>=6.2.5
2021-04-26 20:02:48 +02:00
packages = find_namespace:
[options.packages.find]
include = firebird.*
[options.entry_points]
pytest11 =
firebird = firebird.qa.plugin
2021-04-27 17:48:17 +02:00
console_scripts =
fbt-conv = firebird.qa.fbtconv:main
2021-04-26 20:02:48 +02:00
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support.
universal=0