-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyviewmaster.toml
46 lines (40 loc) · 1.65 KB
/
pyviewmaster.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
# pyviewmaster.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"] # These are build dependencies
build-backend = "setuptools.build_meta"
[project]
name = "pyviewmaster"
version = "0.1.2"
description = "viewmastR uses machine learning implemented in Rust to perform automated cell type classification for single-cell genomic data. Currently viewmastR is authored to work with scRNAseq data, but more features are coming."
authors = [
{ name = "Scott Furlan", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md" # Assumes you have a README.md file for package description
requires-python = ">=3.9"
keywords = ["single-cell", "genomics", "classification", "machine learning"]
homepage = "https://github.com/furlan-lab/pyviewmaster" # Replace with your GitHub URL
# Dependencies for users of your package
dependencies = [
"numpy",
"pandas",
"scanpy",
"scikit-learn",
"scipy",
"rds2py",
"biocframe"
]
# Optional table for additional URLs like documentation or issue tracker
[project.urls]
"Documentation" = "https://github.com/furlan-lab/pyviewmaster#readme"
"Issues" = "https://github.com/furlan-lab/pyviewmaster/issues"
"Source Code" = "https://github.com/furlan-lab/pyviewmaster"
# Optional table for classifiers, which help PyPI categorize your package
[project.classifiers]
Programming_Language = ["Python :: 3", "Python :: 3.7", "Python :: 3.8", "Python :: 3.9"]
License = "OSI Approved :: MIT License"
Operating_System = "OS Independent"
# Optional dependencies (for development, testing, etc.)
[project.optional-dependencies]
dev = ["pytest", "twine", "black"]
docs = ["mkdocs", "mkdocs-material"]