-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (21 loc) · 919 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='Enhancer Dissection',
version='0.1',
description='Applies various techniques to help visualize and understand variation in various regions of sequence',
url='https://github.com/nowling-lab/enhancer-dissection',
author='John Peters',
author_email='[email protected]',
license='Apache-2.0',
packages=['clustal_highlighter', 'clustal_highlighter/modules', 'clustal_highlighter/modules/data_structures', 'clustal_highlighter/modules/fasta_highlighter_LEGACY', 'clustal_highlighter/modules/fasta_highlighter_LEGACY/modules'],
zip_safe=False,
python_requires=">=3.10",
scripts=[
"bin/genome_highlighter",
"bin/run_fimo_on_file",
"bin/fasta_highlighter",
"bin/run_vcf_tools_pi"
],
install_requires=['pandas>=1.3.4', 'numpy>=1.22.3', 'dash>=2.10.2'],
include_package_data=True,
)