-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (72 loc) · 1.47 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
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[project]
name = "pyragit"
authors = [
{name = "Holger Frey", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version", "description"]
license = {text = "Beerware"}
# see https://pypi.org/classifiers/
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"License :: Freely Distributable",
]
dependencies = [
'mistune',
'mistune-contrib',
'plaster_pastedeploy',
'paste',
'pygments',
'pygit2<1.9',
'pyramid',
'pyramid_debugtoolbar',
'pyramid_jinja2',
'waitress',
]
[project.optional-dependencies]
test = [
"pytest >=4.0.0",
"pytest-cov",
"pytest-mock",
"beautifulsoup4",
"WebTest >= 1.3.1", # py3 compat
]
dev = [
"black",
"flake8",
"flake8-comprehensions",
"isort >= 5.0.0",
"keyring",
"pre-commit",
]
[project.urls]
Documentation = "https://github.com/holgi/pyragit"
Source = "https://github.com/holgi/pyragit"
[project.entry-points."paste.app_factory"]
main = "pyragit:main"
[tool.black]
line-length = 79
py37 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
line_length=79
multi_line_output=3
length_sort="True"
include_trailing_comma="True"