-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
44 lines (36 loc) · 919 Bytes
/
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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
version = "3.2.1"
name = "personnummer"
description = "Validate Swedish personal identity numbers"
license = { file = "./LICENSE" }
readme = "README.md"
authors = [
{ name = "Personnummer and Contributors", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://personnummer.dev"
Repository = "https://github.com/personnummer/python"
[project.entry-points."console_scripts"]
personnummer = "personnummer.main:main"
[project.optional-dependencies]
dev = [
"pytest",
"build",
]
[options]
packages = ["personnummer"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["personnummer/tests*"]
[tool.pytest.ini_options]
testpaths = [
"personnummer/tests",
]
addopts = "-ra -v"