-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (71 loc) · 1.5 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
[project]
name = "dbmisvc-starter"
version = "1.0.0"
description = "A starter for a DBMISVC-style application"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE.txt"}
authors = [
{name = "HMS DBMI Tech Dev Core" }
]
maintainers = [
{name = "HMS DBMI Tech Dev Core" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
"Bug Reports" = "https://github.com/hms-dbmi/dbmisvc-app-test/issues"
"Source" = "https://github.com/hms-dbmi/dbmisvc-app-test/"
[build-system]
requires = [ "setuptools >= 35.0.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 120
extend-ignore = ["E402"]
exclude = [".git", "__pycache__", "dist"]
max-complexity = 10
[tool.tox]
legacy_tox_ini = '''
[tox]
envlist = py{36,37,38,39}-django{22,32}
install_command = pip install {opts} "{packages}"
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
[testenv]
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
commands =
nosetests {posargs}
deps =
-rrequirements.txt
django22: Django>=2.2,<2.3
django32: Django>=3.2,<3.3
'''