forked from usadellab/Helixer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
13 lines (12 loc) · 648 Bytes
/
setup.py
File metadata and controls
13 lines (12 loc) · 648 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup
setup(
name='helixer',
version='0.3.0a0',
description='Deep Learning fun on gene structure data',
packages=['helixer', 'helixer.core', 'helixer.prediction', 'helixer.evaluation', 'helixer.tests', 'helixer.export'],
package_data={'helixer': ['testdata/*.fa', 'testdata/*.gff']},
install_requires=["geenuff @ https://github.com/weberlab-hhu/GeenuFF/archive/refs/heads/main.zip"],
dependency_links=["https://github.com/weberlab-hhu/GeenuFF/archive/refs/heads/main.zip#egg=geenuff"],
scripts=["Helixer.py", "fasta2h5.py", "geenuff2h5.py", "helixer/prediction/HybridModel.py"],
zip_safe=False,
)