-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (38 loc) · 1.42 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='component_segmentation',
version='1.0.0',
description='Segmenting syntenic blocks of shared sequence.',
author='Josiah Seaman, Dmytro Trybushnyi, Artem Tarasov, Christian Kubica, Simon Heumos, Thomas Townsley, Pantograph Team',
author_email='josiah@newline.us',
packages=find_packages(exclude=('data',)),
include_package_data=True,
scripts=['matrixcomponent/segmentation.py'],
install_requires=[
# 'nose>=1.3.7',
# 'pytest>=5.4.1',
'DNASkittleUtils>=1.0.13',
'sortedcontainers>=2.1',
'joblib>=0.14',
'psutil>=5.7',
'recordclass>=0.13'
'numpy>=1.9.3',
'numba>=0.48',
'dataclasses>=0.7'
# 'rdflib>=4.2.2',
],
url='https://graphgenome.org',
download_url='https://github.com/graph-genome/component_segmentation',
keywords=['bioinformatics', 'dna', 'fasta', 'graph genome', 'GFA', 'MSA'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)