-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (65 loc) · 2.03 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iscn-authenticator"
version = "0.2.1"
description = "ISCN 2024 karyotype validation — parser, rule engine, and types. Pure Python, zero runtime dependencies."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Paulo Nuin" }]
keywords = [
"iscn",
"iscn-2024",
"karyotype",
"cytogenetics",
"cytogenomics",
"bioinformatics",
"validation",
"nomenclature",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Typing :: Typed",
]
dependencies = []
[project.urls]
Homepage = "https://bioinformat.org/projects/iscn-authenticator"
Repository = "https://github.com/nuin/iscn-authenticator-py"
Issues = "https://github.com/nuin/iscn-authenticator-py/issues"
Changelog = "https://github.com/nuin/iscn-authenticator-py/blob/master/CHANGELOG.md"
Documentation = "https://github.com/nuin/iscn-authenticator-py#readme"
[project.optional-dependencies]
# Stdlib-only test runner; this exists so `pip install .[test]` is a no-op
# and downstream packagers can install a single extra to confirm the test
# suite is wired up. unittest itself is part of the stdlib.
test = []
[tool.hatch.build.targets.wheel]
packages = ["iscn_authenticator"]
[tool.hatch.build.targets.sdist]
include = [
"iscn_authenticator/",
"fixtures/",
"tests/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"pyproject.toml",
]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]