-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.25 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
[tool.poetry]
name = "snakecamel"
version = "0.1.0"
description = "An easy-to-use package to convert to camelCase or snake_case"
authors = ["Lysandros Nikolaou <lisandrosnik@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/lysnikolaou/snakecamel"
repository = "https://github.com/lysnikolaou/snakecamel"
documentation = "https://github.com/lysnikolaou/snakecamel"
keywords = ["snakecase", "camelcase"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: General",
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
black = "^22.6.0"
pytest-cov = "^3.0.0"
mypy = "^0.971"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
files = ["snakecamel", "tests"]
[tool.black]
line-length = "100"
target_version = ["py310"]
[tool.pycln]
all = true
[tool.isort]
profile = "black"
line_length = 100
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "raise AssertionError", "assert False"]