forked from weberlab-hhu/Helixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools < 72.0"]
build-backend = "setuptools.build_meta"
[project]
name = "helixer"
version = "0.3.3"
description = "Deep Learning fun on gene structure data"
readme = "README.md"
requires-python = ">=3.8.5"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"geenuff @ git+https://github.com/weberlab-hhu/[email protected]",
"sqlalchemy==1.3.22",
"tensorflow>=2.6.2",
"tensorflow-addons>=0.21.0",
"nni",
"seaborn",
"Keras<3.0.0",
"keras_layer_normalization",
"terminaltables",
"HTSeq",
"intervaltree",
"numpy",
"h5py",
"multiprocess",
"numcodecs",
"appdirs"
]
[project.urls]
"Homepage" = "https://github.com/weberlab-hhu/Helixer"
"Documentation" = "https://github.com/weberlab-hhu/Helixer"
[tool.setuptools]
packages = [
"helixer",
"helixer.core",
"helixer.prediction",
"helixer.evaluation",
"helixer.tests",
"helixer.export"
]
package-data = {helixer = ["testdata/*.fa", "testdata/*.gff"]}
script-files = ["Helixer.py", "fasta2h5.py", "geenuff2h5.py", "helixer/prediction/HybridModel.py", "scripts/fetch_helixer_models.py"]