-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tidytcells"
requires-python = ">=3.8"
authors = [
{name = "Yuta Nagano", email = "[email protected]"}
]
maintainers = [
{name = "Yuta Nagano", email = "[email protected]"}
]
description = "Standardise TR/MH data"
readme = "README.md"
keywords = ["immunology", "bioinformatics", "TCR", "TR", "MHC", "MH", "HLA", "T cell", "IMGT"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://tidytcells.readthedocs.io"
Documentation = "https://tidytcells.readthedocs.io"
Repository = "https://github.com/yutanagano/tidytcells"
Issues = "https://github.com/yutanagano/tidytcells/issues"
[project.optional-dependencies]
dev = [
"beautifulsoup4",
"build",
"odfpy",
"pandas",
"pip",
"pytest",
"pytest-cov",
"requests",
"setuptools",
"sphinx-book-theme",
"tox",
"twine",
"wheel",
]
docs = ["sphinx-book-theme"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "tidytcells.VERSION"}