-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 929 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
36
[project]
name = "pytool"
version = "6.0.3"
description = "Pytool is a collection of utilities and language enhancements for Python"
readme = "README.md"
license = "MIT"
authors = [
{name = "Jacob Alheid", email = "shakefu@gmail.com"},
]
requires-python = ">=3.9,<4.0"
dependencies = [
"simplejson >=3.19.2, <4.0.0",
]
[dependency-groups]
dev = [
"bson >=0.5.10, <1.0.0",
"configargparse >=1.7, <2.0",
"coverage >=6.5.0, <7.0.0",
"coveralls >=3.3.1, <4.0.0",
"mock >=5.1.0, <6.0.0",
"pre-commit >=4.2.0, <5.0.0",
"pytest >=8.4.0, <9.0.0",
"pytest-cov >=4.1.0, <5.0.0",
"pytest-mock >=3.14.0, <4.0.0",
"python-dateutil >=2.9.0.post0, <3.0.0",
]
docs = [
"sphinx >=7.2.6, <8.0.0",
"sphinx-rtd-theme>=2.0.0,<3.0.0",
"sphinx-autodoc-typehints >=1.25.2, <2.0.0",
]
# This is required so setuptools doesn't see "script" as a package
[tool.setuptools]
packages = ["pytool"]