-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
93 lines (84 loc) · 2.14 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
83
84
85
86
87
88
89
90
91
92
93
[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.14.0",
"pre-commit==4.0.1",
"pytest==8.3.4",
"pytest-cov==6.0.0",
"ruff==0.8.4",
]
[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", # pycodestyle
"B", # flake8-bugbear
"W", # Warning
"F", # pyflakes
"UP", # pyupgrade
"I001", # unsorted-imports
"T201", # Don't allow print
"T203", # Don't allow pprint
"RUF022", # Unsorted __all__
"RUF023", # Unforted __slots__
]
ignore=[
# Recommened ignores by ruff when using formatter
"E501",
"W191",
"E111",
"E114",
"E117",
"D206",
"D300",
"Q000",
"Q001",
"Q002",
"Q003",
"COM812",
"COM819",
"ISC001",
"ISC002",
]