-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (73 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "camel-converter"
dynamic = ["version"]
description = "Converts a string from snake case to camel case or camel case to snake case"
authors = [ { name = "Paul Sanders", email = "paul@paulsanders.dev" } ]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
repository = "https://github.com/sanders41/camel-converter"
homepage = "https://github.com/sanders41/camel-converter"
documentation = "https://github.com/sanders41/camel-converter"
keywords = ["python", "pydantic", "snake-case", "camel-case", "converter"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
pydantic = ["pydantic>=2.0.0"]
[tool.uv]
dev-dependencies = [
"mypy[faster-cache]==1.13.0",
"pre-commit==4.0.1",
"pytest==8.3.3",
"pytest-cov==6.0.0",
"ruff==0.7.3",
]
[tool.hatch.version]
path = "camel_converter/_version.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=camel_converter --cov-report term-missing --no-cov-on-fail"
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = ["tests.*"]
disallow_untyped_defs = false
[tool.ruff]
line-length = 100
fix = true
target-version = "py39"
[tool.ruff.lint]
select=["E", "B", "F", "T201", "T203", "I001", "UP"]
ignore=[
# Recommened ignores by ruff when using formatter
"E501",
"W191",
"E111",
"E114",
"E117",
"D206",
"D300",
"Q000",
"Q001",
"Q002",
"Q003",
"COM812",
"COM819",
"ISC001",
"ISC002",
]