-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (27 loc) · 898 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
[project]
name = 'ir_transport'
authors = [
{ name='Zachary Montague', email='zacander.mon@gmail.com'},
]
description = 'IRTransport is a software developed to compare TCR and BCR repertoires as well as general amino acid sequence datasets nonparametrically using optimal transport.'
readme = "README.md"
requires-python= ">=3.9"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Natural Language :: English',
]
dependencies = [
'numpy >= 1.24.4',
'polars >= 1.9.0',
'pot >= 0.9.4',
'scipy >= 1.6',
'tcrdist_rs >= 0.1.10',
'tqdm'
]
dynamic = ['version']