-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.26 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mapdeduce"
version = "2.1.0"
description = """Handling antigenic maps and sequence data, testing amino \
acid polymorphisms associated with antigenicity."""
readme = "README.md"
authors = [{ name = "David Pattinson", email = "david.pattinson@wisc.edu" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["influenza", "lmm", "antigenic cartography"]
dependencies = [
"biopython",
"flake8>=7.3.0",
"isort>=6.1.0",
"limix_legacy>=0.8.16",
"matplotlib",
"pandas",
"rpy2>=3.0.0",
"scikit-learn",
"seaborn",
"spm1d",
"tqdm",
]
requires-python = ">=3.9"
[dependency-groups]
dev = ["black", "pytest", "flake8"]
[project.urls]
Homepage = "https://github.com/acorg/mapdeduce"
[tool.setuptools]
packages = ["mapdeduce"]
[tool.setuptools.package-data]
mapdeduce = ["data/test/*.fa"]
[tool.uv]
no-binary-package = ["rpy2-rinterface"]
[tool.uv.sources]
limix_legacy = { git = "https://github.com/davipatti/limix-legacy", branch = "master" }
[tool.black]
line-length = 79