-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 769 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 769 Bytes
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
from setuptools import setup
import os.path
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='domain_classifier',
version='0.0.4',
description='Use PFAM domains to classify DNA or proteins to taxonomic domain',
author='Asaf Peer',
author_email='asaf.peer@jax.org',
license='MIT',
packages=['domain_classifier'],
scripts=[
'bin/build_domains_DB.py',
'bin/predict_domain.py',
'bin/filter_kraken_db.py'],
install_requires=[
'biopython',
'apsw',
],
zip_safe=False,
url='https://github.com/asafpr/domain_classifier',
long_description=read("README.md"),
long_description_content_type="text/markdown",)