-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
51 lines (48 loc) · 1.44 KB
/
setup.cfg
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
# build parameters
[metadata]
name = mssql_dataframe
version = file: VERSION
author = Jason Cook
author_email = [email protected]
description = Update, Upsert, and Merge from Python dataframes to SQL Server and Azure SQL database.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jwcook23/mssql_dataframe
project_urls =
Bug Tracker = https://github.com/jwcook23/mssql_dataframe/issues
classifiers =
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
[options]
# packages = mssql_dataframe
packages = find:
python_requires = >=3.7
install_requires =
# Cursor.setinputsizes to specify odbc data type and size
pyodbc>=4.0.24
# expanded data types such as pandas.UInt8Dtype and pd.StringDtype
pandas>=1.0.0
# pyarrow for pandas 3.0
pyarrow
include_package_data = True
# pyest parameters
[tool:pytest]
# output to console
log_cli = True
# ERROR level to exclude WARNING without logger setup
log_cli_level = ERROR
filterwarnings =
# TODO: remove deprecation warning from pyodbc.connect
ignore:PyUnicode_FromUnicode\(NULL, size\) is deprecated
# flake8 parameters
[flake8]
ignore =
# E501: line too long (x > 79 characters)
E501,
# W503: line break before binary opertor : black prefers this style
W503
# coverage parameters
[coverage:run]
omit =
mssql_dataframe\__equality__.py