-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 1006 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 1006 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
26
27
28
from setuptools import setup
setup(
package_dir = {"": "src"},
scripts=['src/predvirushost/run_predvirushost.py'],
# entry_points={
# 'console_scripts': [
# 'predvirushost = predvirushost:run_predvirushost',
# ]},
name = 'predvirushost',
version='0.2.0',
description='Predicts the host domain of contigs from viromes by comparing proteins from a number of contigs to hmm models and then scores each contig based on similarity to those models.',
url='https://github.com/TJN25/PredVirusHost',
author='Thomas J. Nicholson',
author_email='nicholson.tom.n@gmail.com',
license='MIT',
packages=['predvirushost', 'predvirushost.utils'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)'
]
)