-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.2 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "PythonTemplate"
description= "Python Template is a Cookiecutter template for creating a python project"
authors = [
{name="Tom Doel", email="enquiries@codechoreography.co.uk"},
{name="Stephen Thompson", email= "s.thompson@ucl.ac.uk"},
{name="Miguel Xochicale", email= "m.xochicale@ucl.ac.uk"}
]
version = "2.0.rc0"
readme = "README.rst"
license={text="BSD-3 license"}
keywords=["Medical image computing"]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
]
dependencies = [
]
optional-dependencies = {dev = [
"cookiecutter",
"tox>=4",
]}
[project.urls]
homepage = "https://https://github.com/SciKit-Surgery/PythonTemplate"
[tool.setuptools.packages.find]
include=[""]
exclude=["doc", "tests"]
[tool.pytest.ini_options]
addopts = "--color=yes -v"
testpaths = [
"tests",
]
[tool.tox]
legacy_tox_ini = """
[testenv]
skip_install = true
description =
Test package creation
deps =
cookiecutter
pytest
commands =
pytest -v -s -rs tests/
[tox]
env_list = py3{8,9,10,11,12}
"""