-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.05 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
[project]
name = "melly"
version = "0.1.0"
description = "Python DSL for quick dogulations"
authors = [
{ name = "Bradley Reynolds", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
]
[project.urls]
repository = "https://github.com/letsbuilda/melly/"
documentation = "https://projects.letsbuilda.dev/melly/"
[project.optional-dependencies]
dev = [
"pylint",
"pytest",
"pytest-cov",
"black",
"isort",
]
tests = [
"pytest",
]
docs = [
"sphinx",
"sphinxcontrib-autoprogram",
"sphinx-rtd-theme",
"toml;python_version<'3.11'",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.sphinx]
copyright = "Let's Build A ..."
author = "Bradley Reynolds"
api_dir = "src/melly"
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "tests -r a -v --doctest-modules src"
[tool.pylint.format]
max-line-length = 120
good-names = ["it"]