-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 823 Bytes
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
[tool.poetry]
name = "oscn"
version = "0.0.98"
description = "Oklahoma State Courts Network case parsing utilities"
authors = ["John Dungan <john@docket2me.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/codefortulsa/oscn"
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "*"
selectolax = "*"
python-dotenv = "^1.1.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-xdist = "^3.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
]