-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.06 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
[project]
name = "condor_git_config"
authors = [
{name = "Max Fischer", email = "maxfischer2781@gmail.com"},
]
readme = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["htcondor", "condor", "configuration"]
requires-python = ">=3.6"
dynamic = ['version', 'description']
dependencies = ["filelock"]
[project.optional-dependencies]
test = [
"pytest",
"flake8",
"flake8-bugbear",
"black; implementation_name=='cpython'",
"mypy; implementation_name=='cpython'",
"types-filelock; implementation_name=='cpython'",
]
[project.urls]
Source = "https://github.com/matterminers/condor-git-config"
[project.scripts]
condor-git-config = "condor_git_config:main"
[build-system]
requires = ["flit_core ~=3.2"]
build-backend = "flit_core.buildapi"
[tool.black]
target-version = ["py36"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests/unit",
]