generated from UtrechtUniversity/re-python-package-setuptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.16 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ibridges-servers-uu"
description = "iRODS environments for connecting to Utrecht University YoDa servers"
authors = [
{name = "Raoul Schram", email = "r.d.schram@uu.nl"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dynamic = ["version"]
dependencies = [
"ibridges"
]
[project.optional-dependencies]
test = ["ruff", "mypy"]
[project.entry-points."ibridges_server_template"]
uu = "ibridgescontrib.uutemplate.templates:IBridgesUUTemplates"
[tool.setuptools]
packages = ["ibridgescontrib"]
[tool.setuptools_scm]
write_to = "ibridgescontrib/uutemplate/_version.py"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["C", "D", "E", "F", "UP", "B", "SIM", "I", "N", "W"]
ignore = ["D203", "D213", "D206", "UP007"]