-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 1.72 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
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mavetools"
dynamic = ["version"]
description = "Useful functions for manipulating Multiplex Assay of Variant Effect datasets."
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.8"
authors = [
{ name = "MaveDB Developers", 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 = [
"aiohttp",
"attrs",
"certifi",
"fqfa>=1.2.1",
"idutils",
"mavehgvs",
"numpy",
"pandas",
"requests",
"tables",
"joblib",
"mavedb>=2023.1",
"pyhumps",
"more-itertools",
"tqdm",
"hgvs", # required by accession-based dataframe validator
"cdot", # required by accession-based dataframe validator
]
[project.urls]
repository = "https://github.com/VariantEffect/mavetools"
documentation = "https://mavedb.org/docs/mavetools/"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
"pytest",
"Flake8-pyproject",
"flake8-bugbear",
"isort",
"mypy",
"coverage",
"sphinx",
]
[tool.black]
line-length = 120
[tool.flake8]
extend-select = ["B950"]
extend-ignore = ["E203", "E501", "E701"]
max-complexity = 10
max-line-length = 120
[tool.isort]
profile = "black"
[tool.hatch.version]
path = "src/mavetools/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/mavetools"]
[tool.hatch.build.targets.sdist]
exclude = [
"docs",
".github",
]