-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
55 lines (50 loc) · 1.59 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "quickbase-client"
version = "0.8.0"
description = "A Quickbase Python API Client Generator"
authors = ["Tim Kutcher <tim@tkutcher.com>"]
maintainers = ["Tim Kutcher <tim@tkutcher.com>"]
readme = "README.rst"
license = "LICENSE.md"
homepage = "https://github.com/tkutcher/quickbase-client"
repository = "https://github.com/tkutcher/quickbase-client"
documentation = "https://quickbase-client.readthedocs.io/en/latest/?badge=latest"
keywords = ["quickbase", "client", "quickbase-api", "orm", "generator"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tkutcher/quickbase-client/issues"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
stringcase = "^1.2.0"
attrs = "^23.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-cov = "^2.10.1"
requests-mock = "^1.8.0"
flake8 = "^3.8.4"
flake8-quotes = "^3.2.0"
flake8-import-order = "^0.18.1"
pytest-flake8 = "^1.0.6"
tox = "^4.12.1"
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^0.5.0"
python-dotenv = "^0.15.0"
six = "^1.15.0"
pytest-mock = "^3.12.0"
black = "^23.12.0"
[tool.poetry.scripts]
qbc = 'quickbase_client.tools.qbc:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"