-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.37 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
56
57
58
59
60
[tool.poetry]
name = "pymssql-utils"
version = "0.4.2"
description = "pymssql-utils is a small library that wraps pymssql to make your life easier."
authors = ["Tim OSullivan <tim@lanster.dev>"]
license = "GNU LGPLv2.1"
homepage = "https://github.com/invokermain/pymssql-utils"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Typing :: Typed",
]
packages = [
{ include = "pymssqlutils" },
]
[tool.poetry.dependencies]
python = "^3.7"
pymssql = "^2.1.4"
orjson = { version = "*", optional = true }
pandas = { version = "*", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7"
pytest-mock = "^3"
pytest-dotenv = ">=0.5.0,<1.0.0"
black = "^22"
flake8 = "^5"
isort = "^5"
coverage = "^6"
mypy = ">=0.971"
types-pymssql = "^2.1.0"
[tool.poetry.extras]
json = ["orjson"]
pandas = ["pandas"]
all = ["orjson", "pandas"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
env_files = "./tests/.env"
[tool.mypy]
ignore_missing_imports = true
warn_return_any = true
strict = true