-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.39 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
# ----------------------------------------------------------------------------
# Copyright (c) 2023, Amanda Birmingham.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
import versioneer
from setuptools import setup, find_packages
setup(name='pysyndna',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description="A python implementation and extension of SynDNA "
"('a Synthetic DNA Spike-in Method for Absolute "
"Quantification of Shotgun Metagenomic Sequencing', "
"Zaramela et al., mSystems 2022)",
license='BSD-3-Clause',
description='Python implementation of the SynDNA algorithm',
author="Amanda Birmingham",
author_email="[email protected]",
url='https://github.com/AmandaBirmingham/pysyndna',
packages=find_packages(),
include_package_data=True,
package_data={
'pysyndna': [
'*.*',
'data/*.*']
},
# making sure that numpy is installed before biom
setup_requires=['numpy', 'cython'],
install_requires=['pandas', 'scipy', 'scikit-learn', 'pyyaml',
'biom-format', 'nose', 'pep8', 'flake8'],
)