-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.18 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
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mavehgvs"
dynamic = ["version"]
description = "Regular expression-based validation of HGVS-style variant strings for Multiplexed Assays of Variant Effect."
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.6"
authors = [
{ name = "Alan F Rubin", email = "alan.rubin@wehi.edu.au" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"fqfa>=1.2.3",
]
[project.urls]
repository = "https://github.com/VariantEffect/mavehgvs"
documentation = "https://www.mavedb.org/docs/mavehgvs"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
"pytest",
]
[tool.hatch.version]
path = "src/mavehgvs/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/mavehgvs"]
[tool.hatch.build.targets.sdist]
exclude = [
"docs/",
".github/",
]
[tool.setuptools.package-data]
"mavehgvs" = ["py.typed"]