-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 loc) · 1.02 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
from setuptools import setup
setup(
name='superseal',
python_requires='>3.6.6',
version='0.0.1',
url='https://github.com/stephenshank/superseal',
download_url="https://github.com/stephenshank/superseal/archive/v0.0.1.tar.gz",
description='Reference-guided viral quasipsecies reconstruction',
author='Stephen D. Shank',
author_email='[email protected]',
maintainer='Stephen D. Shank',
maintainer_email='[email protected]',
install_requires=[
'biopython>=1.76',
'numpy>=1.18.4',
'pandas>=1.0.0',
'pysam>=0.15.4',
'PyVCF3>=1.0.3'
],
packages=['superseal'],
entry_points={
'console_scripts': [
'superseal = superseal.cli:command_line_interface'
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
],
include_package_data=True
)