-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (46 loc) · 1.58 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
56
57
58
59
[project]
name = "carabiner-tools"
version = "0.0.3.post1"
authors = [
{ name="Eachan Johnson", email="eachan.johnson@crick.ac.uk" },
]
description = "Useful utilities."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["bioinformatics", "machine-learning", "data"]
classifiers = [
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"tqdm"
]
[project.optional-dependencies]
deep = ["tensorflow"]
pd = ["pandas", "openpyxl==3.1.0"]
mpl = ["carabiner-tools[pd]", "matplotlib", "numpy"]
all = ["carabiner-tools[deep,mpl,pd]"]
[project.urls]
"Homepage" = "https://github.com/scbirlab/carabiner"
"Bug Tracker" = "https://github.com/scbirlab/carabiner/issues"
[project.scripts]
carabiner = "carabiner.cli:main"
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
#package-data = {"ogilo" = ["*.csv"]}
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"