-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1022 Bytes
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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
version = "1.0.1"
name = "organisationsnummer"
description = "Validate Swedish organization numbers"
license = { file = "./LICENSE" }
readme = "README.md"
authors = [
{ name = "Organisationsnummer and Contributors", email = "hello@organisationsnummer.dev" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"personnummer"
]
[project.urls]
Homepage = "https://organisationsnummer.dev"
Repository = "https://github.com/organisationsnummer/python"
[project.entry-points."console_scripts"]
organisationsnummer = "organisationsnummer.main:main"
[project.optional-dependencies]
dev = [
"pytest",
"build",
]
[options]
packages = ["organisationsnummer"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["organisationsnummer/tests*"]
[tool.pytest.ini_options]
testpaths = [
"organisationsnummer/tests",
]
addopts = "-ra -v"