-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
43 lines (38 loc) · 1.11 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blaze2"
dynamic = ["version"]
authors = [
{ name = "Yupei You", email = "[email protected]" }
]
description = "Barcode identification from Long reads for AnalyZing single cell gene Expression"
readme = "README.md"
urls = { Source = "https://github.com/shimlab/BLAZE" }
license = { text = "GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"fast-edit-distance==1.2.2",
"matplotlib",
"tqdm",
"numpy",
"pandas",
]
[tool.setuptools]
packages = ["blaze"] # You can also use find_packages if you have a specific package structure.
[tool.setuptools.package-data]
blaze = [
"10X_bc/3M-february-2018.zip",
"10X_bc/737K-august-2016.txt",
"10X_bc/3M-5pgex-jan-2023.zip",
"10X_bc/3M-3pgex-may-2023.zip"
]
[project.scripts]
blaze = "blaze:_pipeline"
[tool.setuptools_scm]