-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tcrconvert"
version = "0.1"
dependencies = ["pandas"]
requires-python = ">= 3.9"
authors = [
{name = "Emma Bishop", email = "[email protected]"}
]
description = "Convert TCRs between 10X, Adaptive, and IMGT formats."
readme = "README.md"
license = {text = "MIT"}
keywords = ["TCR", "Adaptive", "10X", "IMGT", "T cell receptor", "convert"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
# Supported Python versions
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://tcrconvert.readthedocs.io/en/latest/"
Repository = "https://github.com/seshadrilab/tcrconvert.git"
Issues = "https://github.com/seshadrilab/tcrconvert/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.setuptools.package-data]
tcrconvert = ["data/**/*.csv"]