Skip to content

Commit 662f4dd

Browse files
committed
add pyproject.toml
1 parent 0275c41 commit 662f4dd

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "seqchromloader"
7+
version = "0.9.3"
8+
description = "Utilities for training DL models using DNA sequence and chromatin inputs"
9+
authors = [{name = "Jianyu Yang", email = "yztxwd@gmail.com"},]
10+
readme = "README.md"
11+
requires-python = ">=3.8, <3.14"
12+
dependencies = [
13+
'biopython>=1.8.0',
14+
'numpy',
15+
'pandas',
16+
'pyfaidx>=0.7.0',
17+
'pybedtools>=0.9.0',
18+
'pysam>=0.19.0',
19+
'pybigwig>=0.3.0',
20+
'torch>=1.10.0',
21+
'webdataset>=0.2.0',
22+
'pybigtools>=0.2.5, <0.3'
23+
]
24+
license = "MIT AND (Apache-2.0 OR BSD-2-Clause)"
25+
keywords = ["interpretation", "attribution", "concept", "genomics", "deep learning"]
26+
27+
[project.urls]
28+
Homepage = "https://github.com/seqcode/seqchromloader"
29+
30+
[tool.setuptools.packages.find]
31+
exclude = ["data", "test", "build", "dist"]

0 commit comments

Comments
 (0)