-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 975 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mir"
version = "0.0.1"
authors = [
{ name="antigenomics", email="[email protected]" },
]
description = "A library for managing and analyzing immunosequencing data"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"biopython>=1.81",
"matplotlib>=3.7.2",
"numpy>=1.25.1",
"olga==1.2.4",
"pandas>=2.0.3",
"python_igraph==0.10.6",
"scipy>=1.11.2",
"seaborn>=0.12.2",
"umap-learn==0.5.3",
"scikit-learn==1.3.0",
"textdistance==4.5.0",
"plotnine==0.12.3"
]
license = {text = "MIT License"}
[project.urls]
Homepage = "https://github.com/antigenomics/mirpy"
Issues = "https://github.com/antigenomics/mirpy/issues"