-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (103 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (103 loc) · 2.07 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smartsheet-dataframe"
version = "0.3.7"
authors = [
{ name = "Ridge Coffman", email = "coffman.ridge@gmail.com" },
]
description = "Converts Smartsheet sheets and reports to a Pandas DataFrame"
readme = "README.md"
requires-python = ">=3.6.5"
license = { text = "MIT" }
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Spreadsheet",
]
dependencies = [
"pandas>=0.24.0",
"requests>=2.0.0"
]
[project.urls]
Homepage = "https://github.com/RCoff/Smartsheet-DataFrame"
Issues = "https://github.com/RCoff/Smartsheet-DataFrame/issues"
[tool.isort]
force_grid_wrap = 3
include_trailing_comma = true
multi_line_output = 3
use_parentheses = true
[tool.pyright]
include = ["src"]
[tool.ruff]
exclude = ["tests"]
[tool.ruff.lint]
extend-select = [
"A",
"ANN",
"ASYNC",
"B",
"BLE",
"C4",
"COM",
"D",
"DTZ",
"ERA",
"G",
"ICN",
"INP",
"LOG",
"N",
"PD",
"PIE",
"PLC",
"PLE",
"PLR",
"PTH",
"PYI",
"Q",
"S",
"T20",
"TC",
"UP",
"W",
]
extend-ignore = [
"ANN401",
"B028",
"D202",
"D203",
"D213",
"G0",
"PLR0913",
"PLR2004",
"S113",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
omit = [
"config.py",
"dev.py",
]
[dependency-groups]
dev = [
"isort>=5.10.1",
"pyright>=0.0.13.post0",
"pytest>=7.0.1",
"pytest-cov>=4.0.0",
"python-dotenv>=0.20.0",
"ruff>=0.0.17",
"smartsheet-python-sdk==3.0.5",
]