blob: 1ffefc91a56fdd5343a15a5220509b0d8e954543 (
plain)
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
|
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "eduvpn_common"
version = "1.99.2"
description = "eduvpn-common library"
authors = [
{name = "Jeroen Wijenbergh", email = "jeroen.wijenbergh@geant.org"},
]
requires-python = ">=3.6"
readme = "README.md"
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/eduvpn/eduvpn-common"
[project.optional-dependencies]
lint = ["ruff" ]
mypy = [ "mypy" ]
[tool.setuptools.packages.find]
include = ["eduvpn_common*"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = [
# isort
"I",
]
ignore = ['E402']
[tool.ruff.lint.isort]
case-sensitive = true
|